Package org.onesocialweb.openfire.model

Examples of org.onesocialweb.openfire.model.Subscription


      em.close();
      return;
    }
   
    // Add the subscription
    Subscription subscription = new PersistentSubscription();
    subscription.setSubscriber(from);
    subscription.setTarget(to);
    subscription.setCreated(Calendar.getInstance().getTime());
   
    // Store
    em.getTransaction().begin();
    em.persist(subscription);
    em.getTransaction().commit();
View Full Code Here

TOP

Related Classes of org.onesocialweb.openfire.model.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.