Author: ips Date: Fri Jan 7 12:39:04 2005 New Revision: 124572 URL: http://svn.apache.org/viewcvs?view=rev&rev=124572 Log: templates for WSNT portTypes
Added: incubator/hermes/trunk/src/templates/ incubator/hermes/trunk/src/templates/NotificationConsumerPortType.txt incubator/hermes/trunk/src/templates/NotificationProducerPortType.txt incubator/hermes/trunk/src/templates/SubscriptionManagerPortType.txt Added: incubator/hermes/trunk/src/templates/NotificationConsumerPortType.txt Url: http://svn.apache.org/viewcvs/incubator/hermes/trunk/src/templates/NotificationConsumerPortType.txt?view=auto&rev=124572 ============================================================================== --- (empty file) +++ incubator/hermes/trunk/src/templates/NotificationConsumerPortType.txt Fri Jan 7 12:39:04 2005 @@ -0,0 +1,9 @@ + /** + * DOCUMENT_ME + * + * @param requestDoc DOCUMENT_ME + */ + void subscribe( org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.NotifyDocument requestDoc ) + { + new org.apache.ws.notification.base.v1_2.porttype.impl.NotificationConsumerPortTypeImpl( getResourceContext( ) ).subscribe( requestDoc ); + } Added: incubator/hermes/trunk/src/templates/NotificationProducerPortType.txt Url: http://svn.apache.org/viewcvs/incubator/hermes/trunk/src/templates/NotificationProducerPortType.txt?view=auto&rev=124572 ============================================================================== --- (empty file) +++ incubator/hermes/trunk/src/templates/NotificationProducerPortType.txt Fri Jan 7 12:39:04 2005 @@ -0,0 +1,24 @@ + /** + * DOCUMENT_ME + * + * @param requestDoc DOCUMENT_ME + * + * @return DOCUMENT_ME + */ + public org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.SubscribeResponseDocument subscribe( org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.SubscribeDocument requestDoc ) + { + return new org.apache.ws.resource.lifetime.v1_2.porttype.impl.NotificationProducerPortTypeImpl( getResourceContext( ) ).subscribe( requestDoc ); + } + + /** + * DOCUMENT_ME + * + * @param requestDoc DOCUMENT_ME + * + * @return DOCUMENT_ME + */ + public org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.GetCurrentMessageResponseDocument getCurrentMessage( org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.GetCurrentMessageDocument requestDoc ) + { + return new org.apache.ws.resource.lifetime.v1_2.porttype.impl.NotificationProducerPortTypeImpl( getResourceContext( ) ).getCurrentMessage( requestDoc ); + } + Added: incubator/hermes/trunk/src/templates/SubscriptionManagerPortType.txt Url: http://svn.apache.org/viewcvs/incubator/hermes/trunk/src/templates/SubscriptionManagerPortType.txt?view=auto&rev=124572 ============================================================================== --- (empty file) +++ incubator/hermes/trunk/src/templates/SubscriptionManagerPortType.txt Fri Jan 7 12:39:04 2005 @@ -0,0 +1,17 @@ + /** + * DOCUMENT_ME + * + * @param requestDoc DOCUMENT_ME + * + * @return DOCUMENT_ME + */ + org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.PauseSubscriptionResponseDocument pauseSubscription( org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.PauseSubscriptionDocument requestDoc ); + + /** + * DOCUMENT_ME + * + * @param requestDoc DOCUMENT_ME + * + * @return DOCUMENT_ME + */ + org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.ResumeSubscriptionResponseDocument resumeSubscription( org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.ResumeSubscriptionDocument requestDoc ); --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
