Annotation Type SynchronizationServerExtension
-
@Documented @Retention(RUNTIME) @Target(TYPE) @Inherited public @interface SynchronizationServerExtension
This annotation type may be used to indicate that the marked class represents an API that can be used to create an extension for use in the Ping Identity Data Sync Server (which may also be referred to as the Data Sync Server).
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description boolean
appliesToLocalContent
Indicates whether this extension applies to content which exists locally within the Data Sync Server (e.g., configuration or monitor data).boolean
appliesToSynchronizedContent
Indicates whether this extension applies to remote content which is synchronized between source and destination servers.
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description java.lang.String
notes
A set of notes about the usage of this API in the Data Sync Server.
-
-
-
Element Detail
-
appliesToLocalContent
boolean appliesToLocalContent
Indicates whether this extension applies to content which exists locally within the Data Sync Server (e.g., configuration or monitor data).- Returns:
true
if extension applies to local content,false
otherwise
-
-
-
appliesToSynchronizedContent
boolean appliesToSynchronizedContent
Indicates whether this extension applies to remote content which is synchronized between source and destination servers.- Returns:
true
if extension applies to remote content,false
otherwise
-
-
-
notes
java.lang.String notes
A set of notes about the usage of this API in the Data Sync Server.- Returns:
- Notes about the usage of this API in the Data Sync Server
- Default:
- ""
-
-