|
@@ -276,6 +276,9 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|
/** The key of the configuration. e.g. true */
|
|
/** The key of the configuration. e.g. true */
|
|
String SMB_ROLE_AS_GROUP = "smb.role.as.group";
|
|
String SMB_ROLE_AS_GROUP = "smb.role.as.group";
|
|
|
|
|
|
|
|
+ /** The key of the configuration. e.g. 1,2 */
|
|
|
|
+ String SMB_AVAILABLE_SID_TYPES = "smb.available.sid.types";
|
|
|
|
+
|
|
/** The key of the configuration. e.g. .fess_config,.fess_user */
|
|
/** The key of the configuration. e.g. .fess_config,.fess_user */
|
|
String INDEX_BACKUP_TARGETS = "index.backup.targets";
|
|
String INDEX_BACKUP_TARGETS = "index.backup.targets";
|
|
|
|
|
|
@@ -1308,6 +1311,21 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|
*/
|
|
*/
|
|
boolean isSmbRoleAsGroup();
|
|
boolean isSmbRoleAsGroup();
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Get the value for the key 'smb.available.sid.types'. <br>
|
|
|
|
+ * The value is, e.g. 1,2 <br>
|
|
|
|
+ * @return The value of found property. (NotNull: if not found, exception but basically no way)
|
|
|
|
+ */
|
|
|
|
+ String getSmbAvailableSidTypes();
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Get the value for the key 'smb.available.sid.types' as {@link Integer}. <br>
|
|
|
|
+ * The value is, e.g. 1,2 <br>
|
|
|
|
+ * @return The value of found property. (NotNull: if not found, exception but basically no way)
|
|
|
|
+ * @throws NumberFormatException When the property is not integer.
|
|
|
|
+ */
|
|
|
|
+ Integer getSmbAvailableSidTypesAsInteger();
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* Get the value for the key 'index.backup.targets'. <br>
|
|
* Get the value for the key 'index.backup.targets'. <br>
|
|
* The value is, e.g. .fess_config,.fess_user <br>
|
|
* The value is, e.g. .fess_config,.fess_user <br>
|
|
@@ -2443,6 +2461,14 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|
return is(FessConfig.SMB_ROLE_AS_GROUP);
|
|
return is(FessConfig.SMB_ROLE_AS_GROUP);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public String getSmbAvailableSidTypes() {
|
|
|
|
+ return get(FessConfig.SMB_AVAILABLE_SID_TYPES);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getSmbAvailableSidTypesAsInteger() {
|
|
|
|
+ return getAsInteger(FessConfig.SMB_AVAILABLE_SID_TYPES);
|
|
|
|
+ }
|
|
|
|
+
|
|
public String getIndexBackupTargets() {
|
|
public String getIndexBackupTargets() {
|
|
return get(FessConfig.INDEX_BACKUP_TARGETS);
|
|
return get(FessConfig.INDEX_BACKUP_TARGETS);
|
|
}
|
|
}
|