Package org.oasisOpen.docs.wsn.x2004.x06.wsnWSTopics12Draft01

Examples of org.oasisOpen.docs.wsn.x2004.x06.wsnWSTopics12Draft01.TopicSpaceDocument$Factory


    }

    public void init()
    {
        NotificationProducerRPDocument notificationProducerRPDocument = NotificationProducerRPDocument.Factory.newInstance();
        NotificationProducerRPDocument.NotificationProducerRP notificationProducerRP = notificationProducerRPDocument.addNewNotificationProducerRP();
        m_resourcePropertySet = new XmlBeansResourcePropertySet(notificationProducerRPDocument);

        TopicSpaceImpl topicSpace = new TopicSpaceImpl(UnitExampleHome.TARGET_NAMESPACE);

View Full Code Here


         {*/
      SubscriptionTopicListener   lis     = new SubscriptionTopicListener( sub );
      AnyResourcePropertyMetaData anyMeta = new AnyResourcePropertyMetaData( new QName( "foo" ) );

      //need some sort of documenttype
      NotifyDocument                       doc         = NotifyDocument.Factory.newInstance(  );
      XmlBeansResourcePropertySet          set         = new XmlBeansResourcePropertySet( doc );
      XmlBeansResourceProperty             prop        = new XmlBeansResourceProperty( anyMeta, set );
      ResourcePropertyValueChangeTopicImpl topic       = new ResourcePropertyValueChangeTopicImpl( prop );
      TopicListenerTestObj                 testListenr = new TopicListenerTestObj(  );
      topic.addTopicListener( testListenr );
View Full Code Here

      return dom;
   }

   private XmlObject wrapMessageWithNotify( XmlObject msg )
   {
      NotifyDocument                notifyDoc      = NotifyDocument.Factory.newInstance(  );
      NotifyDocument.Notify         notify         = notifyDoc.addNewNotify(  );
      NotificationMessageHolderType notifMsgHolder = notify.addNewNotificationMessage(  );
      notifMsgHolder.setMessage( msg );
      EndpointReference         producerEPR       =
         m_subscription.getProducerResource(  ).getEndpointReference(  );
      XmlBeansEndpointReference xBeansProducerEPR = ( (XmlBeansEndpointReference) producerEPR );
View Full Code Here

        }
    }

    private XmlObject wrapMessageWithNotify( XmlObject msg )
    {
        NotifyDocument notifyDoc = NotifyDocument.Factory.newInstance();
        NotifyDocument.Notify notify = notifyDoc.addNewNotify();
        NotificationMessageHolderType notifMsgHolder = notify.addNewNotificationMessage();
        notifMsgHolder.setMessage( msg );
        notifMsgHolder.setProducerReference( (EndpointReferenceType) ( (XmlObjectWrapper) m_subscription.getProducerResource().getEndpointReference() ).getXmlObject() );
        TopicExpressionType topicExpr = (TopicExpressionType) ( (XmlObjectWrapper) m_subscription.getTopicExpression() ).getXmlObject();
        notifMsgHolder.setTopic( topicExpr );
View Full Code Here

    {*/
        SubscriptionTopicListener lis = new SubscriptionTopicListener(sub);
        AnyResourcePropertyMetaData anyMeta = new AnyResourcePropertyMetaData(new QName("foo"));

        //need some sort of documenttype
        NotifyDocument doc = NotifyDocument.Factory.newInstance();
        XmlBeansResourcePropertySet set = new XmlBeansResourcePropertySet(doc);
        XmlBeansResourceProperty prop = new XmlBeansResourceProperty(anyMeta,set);
        ResourcePropertyValueChangeTopicImpl topic = new ResourcePropertyValueChangeTopicImpl(prop);
        TopicListenerTestObj testListenr = new TopicListenerTestObj();
        topic.addTopicListener(testListenr);
View Full Code Here

      return NAMESPACE_SET;
   }

   private PauseSubscriptionResponseDocument createPauseSubscriptionResponseDocument(  )
   {
      PauseSubscriptionResponseDocument responseDoc = PauseSubscriptionResponseDocument.Factory.newInstance(  );
      responseDoc.addNewPauseSubscriptionResponse(  );
      return responseDoc;
   }
View Full Code Here

        return createResumeSubscriptionResponseDocument();
    }

    private PauseSubscriptionResponseDocument createPauseSubscriptionResponseDocument()
    {
        PauseSubscriptionResponseDocument responseDoc =
                PauseSubscriptionResponseDocument.Factory.newInstance();
        responseDoc.addNewPauseSubscriptionResponse();
        return responseDoc;
    }
View Full Code Here

      return (Subscription) getResource(  );
   }

   private PauseSubscriptionResponseDocument createPauseSubscriptionResponseDocument(  )
   {
      PauseSubscriptionResponseDocument responseDoc = PauseSubscriptionResponseDocument.Factory.newInstance(  );
      responseDoc.addNewPauseSubscriptionResponse(  );
      return responseDoc;
   }
View Full Code Here

      useNotifyDoc.setUseNotify( m_useNotify );
      prop.add( useNotifyDoc );
      if ( m_precondition != null )
      {
         prop = m_propSet.get( SubscriptionManagerPortType.PROP_QNAME_PRECONDITION );
         PreconditionDocument preconditionDoc = PreconditionDocument.Factory.newInstance(  );
         preconditionDoc.setPrecondition( (QueryExpressionType) ( (XmlBeansQueryExpression) m_precondition )
                                          .getXmlObject(  ) );
         prop.add( preconditionDoc );
      }

      if ( m_selector != null )
View Full Code Here

        UseNotifyDocument useNotifyDoc = UseNotifyDocument.Factory.newInstance();
        useNotifyDoc.setUseNotify(m_useNotify);
        prop.add(useNotifyDoc);
        if (m_precondition != null) {
            prop = m_propSet.get(SubscriptionManagerPortType.PROP_QNAME_PRECONDITION);
            PreconditionDocument preconditionDoc = PreconditionDocument.Factory.newInstance();
            preconditionDoc.setPrecondition((QueryExpressionType) ((XmlBeansQueryExpression) m_precondition).getXmlObject());
            prop.add(preconditionDoc);
        }
        if (m_selector != null) {
            prop = m_propSet.get(SubscriptionManagerPortType.PROP_QNAME_SELECTOR);
            SelectorDocument selectorDoc = SelectorDocument.Factory.newInstance();
View Full Code Here

TOP

Related Classes of org.oasisOpen.docs.wsn.x2004.x06.wsnWSTopics12Draft01.TopicSpaceDocument$Factory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.