public static enum ExtensionContext.ContextType extends Enum<ExtensionContext.ContextType>
Extension can be asked to initialize.| Enum Constant and Description |
|---|
DOMAIN
The
Extension will be for use in domain-wide profiles managed by a Host Controller. |
HOST_CONTROLLER
The
Extension will be used to extend the functionality of a Host Controller |
SERVER
The
Extension will be used to extend the functionality of a server instance |
| Modifier and Type | Method and Description |
|---|---|
static ExtensionContext.ContextType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExtensionContext.ContextType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExtensionContext.ContextType SERVER
Extension will be used to extend the functionality of a server instancepublic static final ExtensionContext.ContextType DOMAIN
Extension will be for use in domain-wide profiles managed by a Host Controller.public static final ExtensionContext.ContextType HOST_CONTROLLER
Extension will be used to extend the functionality of a Host Controllerpublic static ExtensionContext.ContextType[] values()
for (ExtensionContext.ContextType c : ExtensionContext.ContextType.values()) System.out.println(c);
public static ExtensionContext.ContextType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2022 JBoss by Red Hat. All rights reserved.