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
|
HIDDEN
Operations with this flag do not appear in management API description output but still can be invoked
by external callers.
|
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 Set<OperationEntry.Flag> |
immutableSetOf(EnumSet<OperationEntry.Flag> flags) |
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 final OperationEntry.Flag HIDDEN
OperationEntry.EntryType.PRIVATE and external use thus disabled.
This can also be used for ops that are invoked internally on one domain process by another domain process
but where it's not possible for the caller to suppress the caller-type=user header from the op, making
use of OperationEntry.EntryType.PRIVATE not workable.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 nullpublic static Set<OperationEntry.Flag> immutableSetOf(EnumSet<OperationEntry.Flag> flags)
Copyright © 2021 JBoss by Red Hat. All rights reserved.