org.azzyzt.jee.runtime.meta
Enum AzzyztGeneratorCutback

java.lang.Object
  extended by java.lang.Enum<AzzyztGeneratorCutback>
      extended by org.azzyzt.jee.runtime.meta.AzzyztGeneratorCutback
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<AzzyztGeneratorCutback>

public enum AzzyztGeneratorCutback
extends java.lang.Enum<AzzyztGeneratorCutback>

AzzyztGeneratorCutback is an enumeration of features that can be chosen to not be generated with Azzyzt JEE Tools.

See Also:
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

NoRemoteInterfaces

public static final AzzyztGeneratorCutback NoRemoteInterfaces
Do not generate @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


NoSoapServices

public static final AzzyztGeneratorCutback NoSoapServices
Do not annotate the generated service beans with @WebService. Use this cutback if the service beans should not be available via SOAP.


NoRestServicesXml

public static final AzzyztGeneratorCutback NoRestServicesXml
Do not generate REST methods with XML parameters and response. If this cutback is used together with NoRestServicesJson, not even the REST servlet is generated and the services can't be reached via REST.


NoRestServicesJson

public static final AzzyztGeneratorCutback NoRestServicesJson
Do not generate REST methods with JSON parameters and response. If this cutback is used together with NoRestServicesXml, not even the REST servlet is generated and the services can't be reached via REST.

Method Detail

values

public static AzzyztGeneratorCutback[] 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 (AzzyztGeneratorCutback c : AzzyztGeneratorCutback.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static AzzyztGeneratorCutback valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null