Package com.metadot.book.connectr.shared

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


      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

Related Classes of com.metadot.book.connectr.shared.StreamItemSummaryDTO

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.