Examples of ActivityStreamsEntry


Examples of org.apache.rave.portal.model.ActivityStreamsEntry

        repository.save(test1);

        List<ActivityStreamsEntry> collection =
                (List<ActivityStreamsEntry>)repository.getAll();

        ActivityStreamsEntry t = repository.get(collection.get(0).getId());
        assertEquals(t.getId(), collection.get(0).getId());
    }
View Full Code Here

Examples of org.apache.rave.portal.model.ActivityStreamsEntry

          (List<ActivityStreamsEntry>)repository.getAll();

        // Check that it was actually test2 that was deleted
        Iterator it = collection.iterator();
        while(it.hasNext()) {
          ActivityStreamsEntry ae = (ActivityStreamsEntry)it.next();
          assertNotEquals(ae.getId(), deletedId);
        }
        assertEquals(2, collection.size());
        

    }
View Full Code Here

Examples of org.apache.rave.portal.model.ActivityStreamsEntry

        collection =
                (List<ActivityStreamsEntry>)repository.getAll();
        // Check that it was actually test1 that was deleted
        Iterator it = collection.iterator();
        while(it.hasNext()) {
          ActivityStreamsEntry ae = (ActivityStreamsEntry)it.next();
          assertNotEquals(ae.getId(), deletedId);
        }
        assertEquals(2, collection.size());
    }
View Full Code Here

Examples of org.apache.rave.portal.model.ActivityStreamsEntry

    deleteById(e.getId());
  }
 
  @Transactional
  public void deleteById(String id) {
        ActivityStreamsEntry e = get(id);
    manager.remove(e);
  }
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.