Package org.apache.ws.notification.subscription

Examples of org.apache.ws.notification.subscription.Subscription


    */
   public void testSubscriptionTableSerialization(  )
   {
      SubscriptionTableManager mgr;
      SubscriptionTable        table;
      Subscription             t1;
      Subscription             t2;

      mgr =
         SubscriptionTableManagerFactory.createSubscriptionTableManager( SubscriptionTableManagerFactory.MANAGER_TYPE_MEMORY );

      mgr.initialize(  );
View Full Code Here


    * @return new sub
    */
   protected Subscription createSubscription( int num )
   {
      String       id  = "http://subscription/" + num;
      Subscription sub = new Subscription( id );

      // set a simple topic
      TopicExpressionType topicExp = sub.getResourceProps(  ).getTopicExpression(  );

      MemorySubscriptionManagerTestCase.setupTopicExpressionType( topicExp, "mazzTopic" );

      // expires in the future
      Calendar termination = Calendar.getInstance(  );
      termination.set( 2099, Calendar.JANUARY, 1 );
      sub.getResourceProps(  ).setTerminationTime( termination );

      return sub;
   }
View Full Code Here

TOP

Related Classes of org.apache.ws.notification.subscription.Subscription

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.