Examples of PlanetGroupSubscriptionAssoc


Examples of org.apache.roller.pojos.PlanetGroupSubscriptionAssoc

    public void saveGroup(PlanetGroupData group) throws RollerException {
       
        // save each sub assoc first, then the group
        Iterator assocs = group.getGroupSubscriptionAssocs().iterator();
        while (assocs.hasNext()) {
            PlanetGroupSubscriptionAssoc assoc =
                    (PlanetGroupSubscriptionAssoc)assocs.next();
            strategy.store(assoc);
        }
        strategy.store(group);
    }
View Full Code Here

Examples of org.apache.roller.pojos.PlanetGroupSubscriptionAssoc

        throws RollerException {
       
        // save each sub assoc first, then the group
        Iterator assocs = group.getGroupSubscriptionAssocs().iterator();
        while (assocs.hasNext()) {
            PlanetGroupSubscriptionAssoc assoc =
                    (PlanetGroupSubscriptionAssoc)assocs.next();
            strategy.store(assoc);
        }
        strategy.store(group);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.