Uses of Interface
com.sapportals.wcm.repository.IResourceList

Packages that use IResourceList
com.sapportals.wcm.repository   
 

Uses of IResourceList in com.sapportals.wcm.repository
 

Methods in com.sapportals.wcm.repository that return IResourceList
 IResourceList IResourceList.subList(int index1, int index2)
           
 IResourceList IResourceList.union(IResourceList list)
          Get the union of this list and the given list.
Given a , b and c in this list; b , c and d in the given list, the result will contain a , b , c and d .
 IResourceList IResourceList.intersection(IResourceList list)
          Get the intersection of this list and the given list.
Given a , b and c in this list; b , c and d in the given list, the result will contain b and c .
 IResourceList IResourceList.difference(IResourceList list)
          Get the difference of this list to the given list.
Given a , b and c in this list; b , c and d in the given list, the result will contain only a .
 IResourceList IResource.getCheckedOutResources()
          Returns a list of currently checked out resources.
 IResourceList IResource.search(com.sapportals.wcm.repository.IQueryExpression query, int depth, int maxResults, boolean includeRevisions)
          Queries the resource and optionally the collection hierarchy for resources.
 IResourceList IResourceFactory.getResources(com.sapportals.wcm.util.uri.IUriList uriList, com.sapportals.wcm.repository.ResourceErrors errors, IResourceContext context)
          Deprecated. As of EP 5.0 SP3, replaced by getResources() method with IRidList parameter.
 IResourceList IResourceFactory.getResources(com.sapportals.wcm.util.uri.IRidList ridList, com.sapportals.wcm.repository.ResourceErrors errors, IResourceContext context)
          Returns a list of resource instances for an array of resource identifiers.
 IResourceList IResourceFactory.getResources(com.sapportals.wcm.util.uri.IRidList ridList, com.sapportals.wcm.repository.ResourceErrors errors, java.lang.String[] permissionNames, IResourceContext context)
          Returns a list of resource instances for an array of resource identifiers and removes resources without the specified permission(s) from the result list.
 IResourceList IResourceFactory.getResources(com.sapportals.wcm.util.uri.IRidList ridList, java.util.Map propertyMaps, com.sapportals.wcm.repository.ResourceErrors errors, IResourceContext context)
          Returns a list of resource instances for a list of resource identifiers and possible {@IPropertyMap}s for the resources.
 IResourceList IResourceFactory.getResources(com.sapportals.wcm.util.uri.IRidList ridList, java.util.Map propertyMaps, com.sapportals.wcm.repository.ResourceErrors errors, java.lang.String[] permissionNames, IResourceContext context)
          Returns a list of resource instances for a list of resource identifiers and possible {@IPropertyMap}s for the resources.
 

Methods in com.sapportals.wcm.repository with parameters of type IResourceList
 boolean IResourceList.addAll(IResourceList list)
          Add all the elements in the specified list to this list.
 IResourceList IResourceList.union(IResourceList list)
          Get the union of this list and the given list.
Given a , b and c in this list; b , c and d in the given list, the result will contain a , b , c and d .
 IResourceList IResourceList.intersection(IResourceList list)
          Get the intersection of this list and the given list.
Given a , b and c in this list; b , c and d in the given list, the result will contain b and c .
 IResourceList IResourceList.difference(IResourceList list)
          Get the difference of this list to the given list.
Given a , b and c in this list; b , c and d in the given list, the result will contain only a .