psdi.security.ldap

Class SyncParameters

  • java.lang.Object
    • psdi.security.ldap.SyncParameters


  • public class SyncParameters
    extends java.lang.Object
    A class to represent the synchronization parameters that are used by the synchronizer object to determine the need to perform synchronization or not and also to determine whether full or incremental synchronization is needed or not. Note: These parameters are always stored in database and retrieved back and passed to the synchronizer at the time of performing the synchronization task and are typically not configured by users.
    • Constructor Summary

      Constructors 
      Constructor and Description
      SyncParameters() 
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      java.lang.String get(java.lang.String parameterName)
      Returns the value of the parameter.
      java.util.Iterator getParameters()
      Returns an Iterator object to iterate over the list of parameters.
      void put(java.lang.String parameterName, java.lang.String value)
      Puts the parameter and its value in a cache.
      int size()
      Returns the number of parameters.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • SyncParameters

        public SyncParameters()
    • Method Detail

      • get

        public java.lang.String get(java.lang.String parameterName)
        Returns the value of the parameter. The value can be null.
        Parameters:
        parameterName - name of the parameter for which value is needed.
        Returns:
        the parameter value, which can be null.
      • put

        public void put(java.lang.String parameterName,
                        java.lang.String value)
        Puts the parameter and its value in a cache.
        Parameters:
        parameterName - name of the parameter
        value - the value of the parameter, which can be null.
      • getParameters

        public java.util.Iterator getParameters()
        Returns an Iterator object to iterate over the list of parameters.
        Returns:
        an Iterator object to iterate over the list of parameters.
      • size

        public int size()
        Returns the number of parameters.
        Returns:
        the number of parameters.