Package org.apache.roller.pojos

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


        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

Related Classes of org.apache.roller.pojos.PlanetGroupSubscriptionAssoc

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.