Examples of PlanetGroupOpmlRequest


Examples of org.apache.roller.planet.ui.rendering.util.PlanetGroupOpmlRequest

        log.debug("Entering");
       
        Planet planet = null;
        PlanetGroup group = null;

        PlanetGroupOpmlRequest opmlRequest = null;
        try {
            // parse the incoming request and extract the relevant data
            opmlRequest = new PlanetGroupOpmlRequest(request);

            planet = opmlRequest.getPlanet();
            if(planet == null) {
                throw new PlanetException("unable to lookup planet: "+
                        opmlRequest.getPlanetHandle());
            }
           
            group = opmlRequest.getGroup();
            if(group == null) {
                throw new PlanetException("unable to lookup group: "+
                        opmlRequest.getGroupHandle());
            }

        } catch(Exception e) {
            // invalid feed request format or weblog doesn't exist
            log.debug("error creating planet page request", e);
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.