Enum RemoteCacheContainerComponent
- java.lang.Object
-
- java.lang.Enum<RemoteCacheContainerComponent>
-
- org.jboss.as.clustering.infinispan.subsystem.remote.RemoteCacheContainerComponent
-
- All Implemented Interfaces:
Serializable,Comparable<RemoteCacheContainerComponent>,org.jboss.as.clustering.controller.ResourceServiceNameFactory
public enum RemoteCacheContainerComponent extends Enum<RemoteCacheContainerComponent> implements org.jboss.as.clustering.controller.ResourceServiceNameFactory
Enumerates components of the remote cache container.- Author:
- Radoslav Husar
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONNECTION_POOLMODULESSECURITY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description org.jboss.msc.service.ServiceNamegetServiceName(org.jboss.as.controller.PathAddress remoteContainerAddress)static RemoteCacheContainerComponentvalueOf(String name)Returns the enum constant of this type with the specified name.static RemoteCacheContainerComponent[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONNECTION_POOL
public static final RemoteCacheContainerComponent CONNECTION_POOL
-
MODULES
public static final RemoteCacheContainerComponent MODULES
-
SECURITY
public static final RemoteCacheContainerComponent SECURITY
-
-
Method Detail
-
values
public static RemoteCacheContainerComponent[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RemoteCacheContainerComponent c : RemoteCacheContainerComponent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RemoteCacheContainerComponent valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getServiceName
public org.jboss.msc.service.ServiceName getServiceName(org.jboss.as.controller.PathAddress remoteContainerAddress)
- Specified by:
getServiceNamein interfaceorg.jboss.as.clustering.controller.ResourceServiceNameFactory
-
-