Package com.evolveum.midpoint.gui.impl
Enum GuiChannel
- java.lang.Object
-
- java.lang.Enum<GuiChannel>
-
- com.evolveum.midpoint.gui.impl.GuiChannel
-
- All Implemented Interfaces:
Serializable,Comparable<GuiChannel>
public enum GuiChannel extends Enum<GuiChannel>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASYNC_UPDATEDISCOVERYIMPORTINITLIVE_SYNCOBJECT_IMPORTRECOMPUTATIONRECONCILIATIONRESET_PASSWORDRESTSELF_REGISTRATIONSELF_SERVICEUSERWEB_SERVICEDeprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GuiChannelfindChannel(String uri)StringgetIconCssClass()StringgetLegacyUri()StringgetLocalizationKey()StringgetUri()static GuiChannelvalueOf(String name)Returns the enum constant of this type with the specified name.static GuiChannel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LIVE_SYNC
public static final GuiChannel LIVE_SYNC
-
RECONCILIATION
public static final GuiChannel RECONCILIATION
-
RECOMPUTATION
public static final GuiChannel RECOMPUTATION
-
DISCOVERY
public static final GuiChannel DISCOVERY
-
WEB_SERVICE
@Deprecated public static final GuiChannel WEB_SERVICE
Deprecated.
-
OBJECT_IMPORT
public static final GuiChannel OBJECT_IMPORT
-
REST
public static final GuiChannel REST
-
INIT
public static final GuiChannel INIT
-
USER
public static final GuiChannel USER
-
SELF_REGISTRATION
public static final GuiChannel SELF_REGISTRATION
-
SELF_SERVICE
public static final GuiChannel SELF_SERVICE
-
RESET_PASSWORD
public static final GuiChannel RESET_PASSWORD
-
IMPORT
public static final GuiChannel IMPORT
-
ASYNC_UPDATE
public static final GuiChannel ASYNC_UPDATE
-
-
Method Detail
-
values
public static GuiChannel[] 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 (GuiChannel c : GuiChannel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GuiChannel 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
-
getUri
public String getUri()
-
getLocalizationKey
public String getLocalizationKey()
-
getIconCssClass
public String getIconCssClass()
-
getLegacyUri
public String getLegacyUri()
-
findChannel
public static GuiChannel findChannel(String uri)
-
-