public final class ConnectionHandlerCfgDefn extends ManagedObjectDefinition<ConnectionHandlerCfgClient,ConnectionHandlerCfg>
Connection Handlers are responsible for handling all interaction with the clients, including accepting the connections, reading requests, and sending responses.
Modifier and Type | Method and Description |
---|---|
ConnectionHandlerCfgClient |
createClientConfiguration(ManagedObject<? extends ConnectionHandlerCfgClient> impl)
Creates a client configuration view of the provided managed
object.
|
ConnectionHandlerCfg |
createServerConfiguration(ServerManagedObject<? extends ConnectionHandlerCfg> impl)
Creates a server configuration view of the provided server
managed object.
|
IPAddressMaskPropertyDefinition |
getAllowedClientPropertyDefinition()
Get the "allowed-client" property definition.
|
IPAddressMaskPropertyDefinition |
getDeniedClientPropertyDefinition()
Get the "denied-client" property definition.
|
BooleanPropertyDefinition |
getEnabledPropertyDefinition()
Get the "enabled" property definition.
|
static ConnectionHandlerCfgDefn |
getInstance()
Get the Connection Handler configuration definition singleton.
|
ClassPropertyDefinition |
getJavaClassPropertyDefinition()
Get the "java-class" property definition.
|
Class<ConnectionHandlerCfg> |
getServerConfigurationClass()
Gets the server configuration class instance associated with this
managed object definition.
|
getAggregationPropertyDefinition, getAggregationPropertyDefinitions, getAllAggregationPropertyDefinitions, getAllChildren, getAllConstraints, getAllPropertyDefinitions, getAllRelationDefinitions, getAllReverseAggregationPropertyDefinitions, getAllReverseRelationDefinitions, getAllTags, getChild, getChildren, getConstraints, getDescription, getDescription, getName, getParent, getPropertyDefinition, getPropertyDefinitions, getRelationDefinition, getRelationDefinitions, getReverseAggregationPropertyDefinitions, getReverseRelationDefinitions, getSynopsis, getSynopsis, getUserFriendlyName, getUserFriendlyName, getUserFriendlyPluralName, getUserFriendlyPluralName, hasChildren, hasOption, hasTag, initialize, isChildOf, isParentOf, isTop, registerConstraint, registerOption, registerPropertyDefinition, registerRelationDefinition, registerTag, resolveManagedObjectDefinition, toString, toString
public static ConnectionHandlerCfgDefn getInstance()
public ConnectionHandlerCfgClient createClientConfiguration(ManagedObject<? extends ConnectionHandlerCfgClient> impl)
createClientConfiguration
in class ManagedObjectDefinition<ConnectionHandlerCfgClient,ConnectionHandlerCfg>
impl
- The managed object.public ConnectionHandlerCfg createServerConfiguration(ServerManagedObject<? extends ConnectionHandlerCfg> impl)
createServerConfiguration
in class ManagedObjectDefinition<ConnectionHandlerCfgClient,ConnectionHandlerCfg>
impl
- The server managed object.public Class<ConnectionHandlerCfg> getServerConfigurationClass()
getServerConfigurationClass
in class ManagedObjectDefinition<ConnectionHandlerCfgClient,ConnectionHandlerCfg>
public IPAddressMaskPropertyDefinition getAllowedClientPropertyDefinition()
Specifies a set of host names or address masks that determine the clients that are allowed to establish connections to this Connection Handler.
Valid values include a host name, a fully qualified domain name, a domain name, an IP address, or a subnetwork with subnetwork mask.
public IPAddressMaskPropertyDefinition getDeniedClientPropertyDefinition()
Specifies a set of host names or address masks that determine the clients that are not allowed to establish connections to this Connection Handler.
Valid values include a host name, a fully qualified domain name, a domain name, an IP address, or a subnetwork with subnetwork mask. If both allowed and denied client masks are defined and a client connection matches one or more masks in both lists, then the connection is denied. If only a denied list is specified, then any client not matching a mask in that list is allowed.
public BooleanPropertyDefinition getEnabledPropertyDefinition()
Indicates whether the Connection Handler is enabled.
public ClassPropertyDefinition getJavaClassPropertyDefinition()
Specifies the fully-qualified name of the Java class that provides the Connection Handler implementation.
Copyright © 2010-2016 ForgeRock AS. All Rights Reserved.