|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Capability>
org.mule.devkit.dynamic.api.helper.Capability
public enum Capability
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 org.mule.api.oauth.OAuthManager |
|
OAUTH1_CAPABLE
This capability indicates that the module implements org.mule.api.oauth.OAuth1Adapter |
|
OAUTH2_CAPABLE
This capability indicates that the module implements org.mule.api.oauth.OAuth2Adapter |
|
POOLING_CAPABLE
This capability indicates that the module implements org.mule.api.adapter.PoolManager |
|
| Method Summary | |
|---|---|
int |
getBit()
|
static Capability |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Capability[] |
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 Capability LIFECYCLE_CAPABLE
Lifecycle
public static final Capability CONNECTION_MANAGEMENT_CAPABLE
ConnectionManager
public static final Capability OAUTH1_CAPABLE
org.mule.api.oauth.OAuth1Adapter
public static final Capability OAUTH2_CAPABLE
org.mule.api.oauth.OAuth2Adapter
public static final Capability POOLING_CAPABLE
org.mule.api.adapter.PoolManager
public static final Capability OAUTH_ACCESS_TOKEN_MANAGEMENT_CAPABLE
org.mule.api.oauth.OAuthManager
| Method Detail |
|---|
public static Capability[] values()
for (Capability c : Capability.values()) System.out.println(c);
public static Capability 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 | |||||||||