public enum IIOPInitializer extends Enum<IIOPInitializer>
Enumeration of ORB initializer groups. Each member contains one or more initializer classes that belong to a
specific group.
| Enum Constant and Description |
|---|
SECURITY_CLIENT |
SECURITY_ELYTRON |
SECURITY_IDENTITY |
SPEC_TRANSACTIONS |
TRANSACTIONS |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
String[] |
getInitializerClasses()
Obtains the class names of the initializers that are part of this group.
|
String |
getInitializerName()
Obtains the name of this initializer group.
|
static IIOPInitializer |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IIOPInitializer[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IIOPInitializer UNKNOWN
public static final IIOPInitializer SECURITY_CLIENT
public static final IIOPInitializer SECURITY_IDENTITY
public static final IIOPInitializer SECURITY_ELYTRON
public static final IIOPInitializer TRANSACTIONS
public static final IIOPInitializer SPEC_TRANSACTIONS
public static IIOPInitializer[] values()
for (IIOPInitializer c : IIOPInitializer.values()) System.out.println(c);
public static IIOPInitializer 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 String getInitializerName()
Obtains the name of this initializer group.
String that represents the initializer group name.public String[] getInitializerClasses()
Obtains the class names of the initializers that are part of this group.
String[] containing the fully-qualified class names of the initializers.Copyright © 2021 JBoss by Red Hat. All rights reserved.