Package com.google.walkaround.wave.server.gxp

Examples of com.google.walkaround.wave.server.gxp.InboxDisplayRecord


    private List<InboxDisplayRecord> getWavesInner() throws IOException {
      ImmutableList.Builder<InboxDisplayRecord> out = ImmutableList.builder();
      List<UserIndexEntry> waves = userIndex.findWaves(participantId, query, offset, limit);
      for (UserIndexEntry wave : waves) {
        out.add(new InboxDisplayRecord(
            wave.getObjectId(),
            // TODO(danilatos): Retrieve contact details if possible and use name not address.
            wave.getCreator().getAddress(),
            "" + new LocalDate(new Instant(wave.getLastModifiedMillis())),
            wave.getTitle().trim(),
View Full Code Here

TOP

Related Classes of com.google.walkaround.wave.server.gxp.InboxDisplayRecord

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.