|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<AzzyztGeneratorCutback>
org.azzyzt.jee.runtime.meta.AzzyztGeneratorCutback
public enum AzzyztGeneratorCutback
AzzyztGeneratorCutback is an enumeration of features that can be chosen to not be generated with Azzyzt JEE Tools.
AzzyztGeneratorOptions
Enum Constant Summary | |
---|---|
NoRemoteInterfaces
Do not generate @Remote annotations on generated service bean interfaces. |
|
NoRestServicesJson
Do not generate REST methods with JSON parameters and response. |
|
NoRestServicesXml
Do not generate REST methods with XML parameters and response. |
|
NoSoapServices
Do not annotate the generated service beans with @WebService . |
Method Summary | |
---|---|
static AzzyztGeneratorCutback |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static AzzyztGeneratorCutback[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, 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 AzzyztGeneratorCutback NoRemoteInterfaces
@Remote
annotations on generated service bean interfaces.
Use this cutback if you plan to deploy on an application server, that only
implements the JEE 6 web profile. An example is JBoss AS 6.0
public static final AzzyztGeneratorCutback NoSoapServices
@WebService
.
Use this cutback if the service beans should not be available via SOAP.
public static final AzzyztGeneratorCutback NoRestServicesXml
NoRestServicesJson
, not even the REST servlet
is generated and the services can't be reached via REST.
public static final AzzyztGeneratorCutback NoRestServicesJson
NoRestServicesXml
, not even the REST servlet
is generated and the services can't be reached via REST.
Method Detail |
---|
public static AzzyztGeneratorCutback[] values()
for (AzzyztGeneratorCutback c : AzzyztGeneratorCutback.values()) System.out.println(c);
public static AzzyztGeneratorCutback valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |