com.hyperion.css
Interface CSSSyncEntryIF


public interface CSSSyncEntryIF

This interface encapsulates all status of identities specified for synchronization. This interface exposes methods required for the invoker to iterate through/ know the different status of all the identities specified. Following are the different status of the identities.

  1. CSSIdenticalEntry com.hyperion.css.sync.impl.CSSIdenticalEntry - This status indicates the identities is identical and has no changes.
  2. CSSUpdatedEntry com.hyperion.css.sync.impl.CSSUpdatedEntry - This status indicates the identities has been updated and requires update.
  3. CSSDeletedEntry com.hyperion.css.sync.impl.CSSDeletedEntry - This status indicates the identities is deleted in external provider.
  4. CSSIgnoredEntry com.hyperion.css.sync.impl.CSSIgnoredEntry - This status indicates that API is unable to find the status.
  5. CSSAmbiguousEntry com.hyperion.css.sync.impl.CSSAmbiguousEntry - This status indicates that API has found more than one simillar identities, so it should be handled manually by Administrator.

Since:
CSS 9.3.0
Author:
Venu

Method Summary
 java.util.List getAmbiguousEntries()
          Returns all the ambiguous entries.
 java.util.List getDeletedEntries()
          Returns all the entries to be deleted.
 java.util.List getIdenticalEntries()
          Returns all the entries that are identical.
 java.util.List getIgnoredEntries()
          Returns all the entries that are ignored as unable to find the status.
 java.util.List getUpdatedEntries()
          Returns all the entries to be updated.
 

Method Detail

getDeletedEntries

java.util.List getDeletedEntries()
Returns all the entries to be deleted.

Returns:
a list of CSSDeletedEntry instance.

getUpdatedEntries

java.util.List getUpdatedEntries()
Returns all the entries to be updated.

Returns:
a list of CSSUpdatedEntry instance.

getIdenticalEntries

java.util.List getIdenticalEntries()
Returns all the entries that are identical.

Returns:
a list of CSSIdenticalEntry instance.

getIgnoredEntries

java.util.List getIgnoredEntries()
Returns all the entries that are ignored as unable to find the status.

Returns:
a list of CSSIgnoredEntry instance.

getAmbiguousEntries

java.util.List getAmbiguousEntries()
Returns all the ambiguous entries.

Returns:
a list of CSSAmbiguousEntry instance.


Copyright © 2005-2009 Oracle Corporation.