source: trunk/src/org/expeditee/settings/encryption/EncryptionDefaults.java@ 1394

Last change on this file since 1394 was 1394, checked in by bln4, 5 years ago

EncPermission setting is now represented as a full mask. An invalid value when the user sets the permission results in the default being used as according to the mask.

File size: 314 bytes
Line 
1package org.expeditee.settings.encryption;
2
3import org.expeditee.setting.StringSetting;
4
5public class EncryptionDefaults {
6 public static final StringSetting DefaultEncryptionPermission = new StringSetting(
7 "The default level of permission for encryption when not otherwise specified",
8 "000"
9 );
10}
Note: See TracBrowser for help on using the repository browser.