Examples of StreamItemSummaryDTO


Examples of com.metadot.book.connectr.shared.StreamItemSummaryDTO

      return item;
  }

  public StreamItemSummaryDTO buildSummaryItem() {
    String descrSummary = getDescrSummary();
    StreamItemSummaryDTO summ = new StreamItemSummaryDTO(id, title, url, descrSummary, date, author, imageUrl);
    return summ;
  }
View Full Code Here

Examples of com.metadot.book.connectr.shared.StreamItemSummaryDTO

      CacheSupport.cachePutExp(this.getClass().getName(), id, this, CACHE_EXPIR);
      addSummaryToCache();
  }
 
  public StreamItemSummaryDTO addSummaryToCache() {
    StreamItemSummaryDTO summ = buildSummaryItem();
    CacheSupport.cachePut(StreamItemSummaryDTO.class.getName(), summ.getId(), summ);
    return summ;
  }
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.