Package org.apache.rave.portal.model

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


    deleteById(e.getId());
  }
 
  @Transactional
  public void deleteById(String id) {
        ActivityStreamsEntry e = get(id);
    manager.remove(e);
  }
View Full Code Here

TOP

Related Classes of org.apache.rave.portal.model.ActivityStreamsEntry

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.