com.ibm.ecm.configuration

Class DesktopAccessConfig

  1. java.lang.Object
  2. extended bycom.ibm.ecm.configuration.ConfigurationObject
  3. extended bycom.ibm.ecm.configuration.DesktopAccessConfig

  1. public class DesktopAccessConfig
  2. extends ConfigurationObject
Since:
2.0.2

Field Summary

Fields inherited from class com.ibm.ecm.configuration.ConfigurationObject
ARRAY_DELIMITER, cloned, KEY_DELIMITER, LIST_ESC_CHAR, LIST_ESCAPE, LIST_SEPARATOR, MODIFIER, properties

Constructor Summary

Constructor and Description
DesktopAccessConfig(org.apache.commons.configuration.Configuration configuration,java.lang.String idPrefix,java.lang.String id)

Method Summary

Modifier and Type Method and Description
  1. protected
  2. java.lang.Class
getDataType(java.lang.String key)
  1. java.lang.String[]
getDenyUsers()
  1. java.lang.String[]
getGroups()
  1. java.lang.String
getObjectType()
  1. java.lang.String
getRepositoryType()
  1. java.lang.String[]
getUsers()
  1. boolean
hasAccess(java.lang.String userName,java.lang.String[] groups)
  1. void
setDenyUsers(java.lang.String[] denyUsers)
  1. void
setGroups(java.lang.String[] groups)
  1. void
setRepositoryType(java.lang.String repositoryType)
  1. void
setUsers(java.lang.String[] users)
Methods inherited from class com.ibm.ecm.configuration.ConfigurationObject
addValueToList, arrayToString, covertEmptyStringtoNull, delete, dump, getConfigurationObject, getDataTypeValue, getIdPrefix, getKey, getList, getMap, getName, getObjectId, getPropertyNames, getPropertyValue, getPropertyValue, getPropertyValue, getPropertyValue, isEmpty, load, propertiesToString, removeValuesFromList, removeValuesFromList, save, setDefaultValue, setProperty, setValues, setValues, setValues, skipThisPropertyWhenSaving, stringToArray, stringToList, toJSON, toString, writeConfigurationToFile
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

Constructor Detail

DesktopAccessConfig

  1. public DesktopAccessConfig(org.apache.commons.configuration.Configuration configuration,
  2. java.lang.String idPrefix,
  3. java.lang.String id)

Method Detail

getObjectType

  1. public java.lang.String getObjectType( )
Description copied from class: ConfigurationObject
Abstract method to return object type.
Specified by:
Returns:
a string object type back, for example "desktop", "repository"...

getDataType

  1. protected java.lang.Class getDataType( java.lang.String key)
Description copied from class: ConfigurationObject
Returns the datatype of a configuration property. This is implemented in subclasses and is used to properly serialize the properties. The default implementation returns null which indicates that compatible behavior should be used, which inspects the property value itself and guesses at the type of the property.
Overrides:
Returns:
a Class instance describing the datatype of the property.

getRepositoryType

  1. public java.lang.String getRepositoryType( )

setRepositoryType

  1. public void setRepositoryType(java.lang.String repositoryType)

getDenyUsers

  1. public java.lang.String[] getDenyUsers( )

setDenyUsers

  1. public void setDenyUsers(java.lang.String[] denyUsers)

getUsers

  1. public java.lang.String[] getUsers( )

setUsers

  1. public void setUsers(java.lang.String[] users)

getGroups

  1. public java.lang.String[] getGroups( )

setGroups

  1. public void setGroups(java.lang.String[] groups)

hasAccess

  1. public boolean hasAccess(java.lang.String userName,
  2. java.lang.String[] groups)