Interface representing a Jetspeed security group principal object model.
917918919920921922923924
{ // Get to the backend to return the group that matches the full path Criteria filter = new Criteria(); filter.addEqualTo("fullPath", principalFullPath); Query query = QueryFactory.newQuery(InternalGroupPrincipalImpl.class, filter); InternalGroupPrincipal group = (InternalGroupPrincipal) getPersistenceBrokerTemplate().getObjectByQuery(query); return group; }