Package org.apache.abdera.model

Examples of org.apache.abdera.model.Entry.discard()


 
  public ResponseContext deleteEntry(
    RequestContext request) {
      Entry entry = getAbderaEntry(request);
      if (entry != null)
        entry.discard();
      return ProviderHelper.nocontent();
  }

  public ResponseContext getEntry(
    RequestContext request) {
View Full Code Here


 
  public ResponseContext deleteEntry(
    RequestContext request) {
      Entry entry = getAbderaEntry(request);
      if (entry != null)
        entry.discard();
      return ProviderHelper.nocontent();
  }

  public ResponseContext getEntry(
    RequestContext request) {
View Full Code Here

        switch(t) {
          case ENTRY:
          case MEDIA:
            String uri = AppTest.INSTANCE.getBase() + "/collections/entries/" + target;
            Entry entry = feed.getRoot().getEntries().get(target);
            entry.discard();
            media.remove(uri);
            response.setStatus(HttpServletResponse.SC_NO_CONTENT);
            return;
          default:
            response.sendError(HttpServletResponse.SC_METHOD_NOT_ALLOWED);  
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.