Package org.moxie.proxy

Examples of org.moxie.proxy.AtomFeed


 
  @Get
  public Representation getFeed() {
    String repository = getRequestAttribute("repository");
    int count = getQueryValue("count", getProxyConfig().getAtomCount());
    AtomFeed generator = new AtomFeed(getApplication(), getRootRef().toString(),
        (StringUtils.isEmpty(repository) ? "" : (repository + " ")) + getBasePathName());
    return generator.getFeed(repository, count);
  }
View Full Code Here

TOP

Related Classes of org.moxie.proxy.AtomFeed

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.