Interface AMDynamicGroup

  • All Superinterfaces:
    AMConstants, AMGroup, AMObject

    public interface AMDynamicGroup
    extends AMGroup
    Deprecated.
    As of Sun Java System Access Manager 7.1.
    This interface provides methods to manage dynamic group. AMDynamicGroup objects can be obtained by using AMStoreConnection. A handle to this object can be obtained by using the DN of the object.
     
     AMStoreConnection amsc = new AMStoreConnection(ssotoken); 
     if (amsc.doesEntryExist(dgDN)) { 
         AMDynamicGroup dg = amsc.getDynamicGroup(dgDN); 
     }
     
     
    • Method Detail

      • getFilter

        String getFilter()
                  throws AMException,
                         SSOException
        Deprecated.
        Returns the search filter for the dynamic group.
        Returns:
        The filter in LDIF format for the dynamic group.
        Throws:
        AMException - if an error is encountered when trying to access/retrieve data from the data store.
        SSOException - if the single sign on token is no longer valid.
      • setFilter

        void setFilter​(String filter)
                throws AMException,
                       SSOException
        Deprecated.
        Sets the search filter for the dynamic group.
        Parameters:
        filter - the filter in LDIF format.
        Throws:
        AMException - if an error is encountered when trying to access/retrieve data from the data store
        SSOException - if the single sign on token is no longer valid