Package org.alfresco.rm.rest.api.model
Class SecurityControlSetting
- java.lang.Object
-
- org.alfresco.rm.rest.api.model.SecurityControlSetting
-
public class SecurityControlSetting extends Object
POJO representing a setting/property key/value in the alfresco-global.properties file- Since:
- 2.6
- Author:
- Tuna Aksoy, Ramona Popa
-
-
Constructor Summary
Constructors Constructor Description SecurityControlSetting()
Empty constructor needed for the REST APISecurityControlSetting(String key, Object value)
Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
Equals implementation for the propertyString
getKey()
Gets the property keyObject
getValue()
Get the setting valueint
hashCode()
hashCode implementation for the propertyvoid
setKey(String key)
Sets the setting keyvoid
setValue(Object value)
Sets the setting valueString
toString()
toString implementation for the property
-
-
-
Method Detail
-
getKey
public String getKey()
Gets the property key- Returns:
- The property key
-
setKey
public void setKey(String key)
Sets the setting key- Parameters:
key
- The property key to set
-
getValue
public Object getValue()
Get the setting value- Returns:
- The property value
-
setValue
public void setValue(Object value)
Sets the setting value- Parameters:
value
- The setting value
-
equals
public boolean equals(Object o)
Equals implementation for the property
-
hashCode
public int hashCode()
hashCode implementation for the property
-
-