Interface GenericConfig
-
- All Known Subinterfaces:
AccessLoggerConfig
,AccessTokenValidatorConfig
,AccountStatusNotificationHandlerConfig
,AdviceConfig
,AlertHandlerConfig
,CertificateMapperConfig
,ChangeSubscriptionHandlerConfig
,CipherStreamProviderConfig
,ConnectionCriteriaConfig
,DataSecurityAuditorConfig
,ErrorLoggerConfig
,ExtendedOperationHandlerConfig
,FileBasedAccessLoggerConfig
,FileBasedErrorLoggerConfig
,GenericBrokerConfig
,GenericDirectoryConfig
,GenericHTTPConfig
,GenericProxyConfig
,GenericSyncConfig
,HTTPOperationLoggerConfig
,HTTPServletExtensionConfig
,IdentityMapperConfig
,JDBCSyncDestinationConfig
,JDBCSyncSourceConfig
,KafkaSyncDestinationPluginConfig
,KeyManagerProviderConfig
,LDAPHealthCheckConfig
,LDAPSyncDestinationPluginConfig
,LDAPSyncSourcePluginConfig
,LogFileRotationListenerConfig
,MonitorProviderConfig
,NotificationManagerConfig
,OAuthTokenHandlerConfig
,OneTimePasswordDeliveryMechanismConfig
,PassphraseProviderConfig
,PassThroughAuthenticationHandlerConfig
,PasswordGeneratorConfig
,PasswordStorageSchemeConfig
,PasswordValidatorConfig
,PlacementAlgorithmConfig
,PluginConfig
,PolicyDecisionLoggerConfig
,PostLDIFExportTaskProcessorConfig
,ProxiedExtendedOperationHandlerConfig
,ProxyTransformationConfig
,RecurringTaskConfig
,RequestCriteriaConfig
,ResultCriteriaConfig
,SASLMechanismHandlerConfig
,SCIM2AttributeMappingConfig
,SCIMSubResourceTypeHandlerConfig
,SearchEntryCriteriaConfig
,SearchReferenceCriteriaConfig
,ServerAffinityProviderConfig
,StoreAdapterConfig
,StoreAdapterPluginConfig
,SyncDestinationConfig
,SyncPipePluginConfig
,SyncSourceConfig
,TokenResourceLookupMethodConfig
,TrustManagerProviderConfig
,UncachedAttributeCriteriaConfig
,UncachedEntryCriteriaConfig
,VelocityContextProviderConfig
,VirtualAttributeProviderConfig
@NotExtensible @ThreadSafety(level=INTERFACE_NOT_THREADSAFE) public interface GenericConfig
This interface defines a set of methods that may be used to obtain information about the general configuration for all types of extensions.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getConfigObjectDN()
Retrieves the DN of the entry containing the configuration for this extension.java.lang.String
getConfigObjectName()
Retrieves the name of the configuration object for this extension.ServerContext
getServerContext()
Retrieves a handle to the server context for the server in which this extension is running.
-
-
-
Method Detail
-
getServerContext
ServerContext getServerContext()
Retrieves a handle to the server context for the server in which this extension is running.- Returns:
- A handle to the server context for the server in which this extension is running.
-
getConfigObjectDN
java.lang.String getConfigObjectDN()
Retrieves the DN of the entry containing the configuration for this extension.- Returns:
- The DN of the entry containing the configuration for this extension.
-
getConfigObjectName
java.lang.String getConfigObjectName()
Retrieves the name of the configuration object for this extension. It will generally be the RDN value for the configuration DN.- Returns:
- The name of the configuration object for this extension.
-
-