From: Vance K. <va...@us...> - 2006-04-17 02:00:33
|
User: vancek Date: 06/04/16 19:00:32 Modified: andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3 EJB3Profile.java Log: declared TAGGEDVALUE_WEBSERVICE_OPERATION_NAME and TAGGEDVALUE_WEBSERVICE_OPERATION_RESULT_NAME constants Revision Changes Path 1.23 +11 -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.22 retrieving revision 1.23 diff -u -w -r1.22 -r1.23 --- EJB3Profile.java 11 Apr 2006 16:08:57 -0000 1.22 +++ EJB3Profile.java 17 Apr 2006 02:00:31 -0000 1.23 @@ -511,4 +511,15 @@ * Defines the webservice method as oneway */ public static final String TAGGEDVALUE_WEBSERVICE_OPERATION_ONEWAY = profile.get("WEBSERVICE_OPERATION_ONEWAY"); + + /** + * Defines the webservice method name + */ + public static final String TAGGEDVALUE_WEBSERVICE_OPERATION_NAME = profile.get("WEBSERVICE_OPERATION_NAME"); + + /** + * Defines the webservice method result name + */ + public static final String TAGGEDVALUE_WEBSERVICE_OPERATION_RESULT_NAME = + profile.get("WEBSERVICE_OPERATION_RESULT_NAME"); } \ No newline at end of file |