From: Vance K. <va...@us...> - 2006-04-11 16:09:01
|
User: vancek Date: 06/04/11 09:08:57 Modified: andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3 EJB3Profile.java Log: declared TAGGEDVALUE_WEBSERVICE_PARAMETER_STYLE and TAGGEDVALUE_WEBSERVICE_OPERATION_ONEWAY constants Revision Changes Path 1.22 +9 -0 cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/EJB3Profile.java Index: EJB3Profile.java =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/EJB3Profile.java,v retrieving revision 1.21 retrieving revision 1.22 diff -u -w -r1.21 -r1.22 --- EJB3Profile.java 16 Mar 2006 15:29:20 -0000 1.21 +++ EJB3Profile.java 11 Apr 2006 16:08:57 -0000 1.22 @@ -502,4 +502,13 @@ */ public static final String TAGGEDVALUE_EJB_USE_QUERY_CACHE = profile.get("USE_QUERY_CACHE"); + /** + * Defines the webservice parameter style + */ + public static final String TAGGEDVALUE_WEBSERVICE_PARAMETER_STYLE = profile.get("WEBSERVICE_PARAMETER_STYLE"); + + /** + * Defines the webservice method as oneway + */ + public static final String TAGGEDVALUE_WEBSERVICE_OPERATION_ONEWAY = profile.get("WEBSERVICE_OPERATION_ONEWAY"); } \ No newline at end of file |