|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<ModuleCapability>
org.mule.api.devkit.capability.ModuleCapability
public enum ModuleCapability
Enumeration of possible capabilities of Mule modules. Each capability represents a
bit in a bit array. The capabilities of a particular module can be queried using
Capabilities
| Enum Constant Summary | |
|---|---|
CONNECTION_MANAGEMENT_CAPABLE
This capability indicates that the module implements ConnectionManager |
|
LIFECYCLE_CAPABLE
This capability indicates that the module implements Lifecycle |
|
OAUTH_ACCESS_TOKEN_MANAGEMENT_CAPABLE
This capability indicates that the module implements oauth.OAuthManager |
|
OAUTH1_CAPABLE
This capability indicates that the module implements oauth.OAuth1Adapter |
|
OAUTH2_CAPABLE
This capability indicates that the module implements oauth.OAuth2Adapter |
|
POOLING_CAPABLE
This capability indicates that the module implements adapter.PoolManager |
|
| Method Summary | |
|---|---|
int |
getBit()
|
static ModuleCapability |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ModuleCapability[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final ModuleCapability LIFECYCLE_CAPABLE
Lifecycle
public static final ModuleCapability CONNECTION_MANAGEMENT_CAPABLE
ConnectionManager
public static final ModuleCapability OAUTH1_CAPABLE
oauth.OAuth1Adapter
public static final ModuleCapability OAUTH2_CAPABLE
oauth.OAuth2Adapter
public static final ModuleCapability POOLING_CAPABLE
adapter.PoolManager
public static final ModuleCapability OAUTH_ACCESS_TOKEN_MANAGEMENT_CAPABLE
oauth.OAuthManager
| Method Detail |
|---|
public static ModuleCapability[] values()
for (ModuleCapability c : ModuleCapability.values()) System.out.println(c);
public static ModuleCapability valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic int getBit()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||