public static enum OperationEntry.Flag extends Enum<OperationEntry.Flag>
Enum Constant and Description |
---|
DOMAIN_PUSH_TO_SERVERS
A domain or host-level operation that should be pushed to the servers even if the default behavior
would indicate otherwise
|
HOST_CONTROLLER_ONLY
A host-level operation that should only be executed on the HostController and not on the servers,
even if the default behavior would indicate otherwise
|
MASTER_HOST_CONTROLLER_ONLY
A domain-level operation that should only be executed on the master HostController and not on the slaves,
even if the default behavior would indicate otherwise
|
READ_ONLY
Operation only reads, does not modify
|
RESTART_ALL_SERVICES
The operation modifies the configuration but can only be applied to the runtime via a restart of all services;
however it does not require a full jvm restart
|
RESTART_JVM
The operation modifies the configuration but can only be applied to the runtime via a full jvm restart
|
RESTART_NONE
The operation modifies the configuration and can be applied to the runtime without requiring a restart
|
RESTART_RESOURCE_SERVICES
The operation modifies the configuration but can only be applied to the runtime via a restart of services,
associated with the affected resource, but does not require a restart of all services or a full jvm restart
|
RUNTIME_ONLY
Operations with this flag do not affect the mode or change the installed services.
|
Modifier and Type | Method and Description |
---|---|
static OperationEntry.Flag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OperationEntry.Flag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperationEntry.Flag READ_ONLY
public static final OperationEntry.Flag RESTART_NONE
public static final OperationEntry.Flag RESTART_JVM
public static final OperationEntry.Flag RESTART_ALL_SERVICES
public static final OperationEntry.Flag RESTART_RESOURCE_SERVICES
public static final OperationEntry.Flag DOMAIN_PUSH_TO_SERVERS
public static final OperationEntry.Flag HOST_CONTROLLER_ONLY
public static final OperationEntry.Flag MASTER_HOST_CONTROLLER_ONLY
public static final OperationEntry.Flag RUNTIME_ONLY
public static OperationEntry.Flag[] values()
for (OperationEntry.Flag c : OperationEntry.Flag.values()) System.out.println(c);
public static OperationEntry.Flag 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 © 2023 JBoss by Red Hat. All rights reserved.