Ignore:
Timestamp:
05/30/19 12:40:31 (5 years ago)
Author:
bln4
Message:

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:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/settings/encryption/EncryptionDefaults.java

    r1390 r1394  
    11package org.expeditee.settings.encryption;
    22
    3 import org.expeditee.setting.IntegerSetting;
     3import org.expeditee.setting.StringSetting;
    44
    55public class EncryptionDefaults {
    6         public static final IntegerSetting DefaultEncryptionPermission = new IntegerSetting(
    7                 "The default level of permission for encryption when not otherwise specified",
    8                 "DefaultEncryptionPermission",
    9                 0
     6        public static final StringSetting DefaultEncryptionPermission = new StringSetting(
     7                "The default level of permission for encryption when not otherwise specified", 
     8                "000"
    109        );
    1110}
Note: See TracChangeset for help on using the changeset viewer.