Interface ResourceCollection

All Known Subinterfaces:
SmartCollection

@ProviderType public interface ResourceCollection
ResourceCollection is an ordered collection of Resource. The collection does not store the actual Resources, it only points to them. Each entry in the collection is represented by a Resource which contains a reference to original resource. That reference Resource can have additional properties (creationDate, etc.)
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    Sling resource type for resource representing a ResourceCollection
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    add(Resource resource)
    Creates a new entry in the collection at the last position and add a reference to resource in the entry.
    boolean
    add(Resource resource, Map<String,Object> properties)
    Creates a new entry in the collection at the last position and add a reference to resource in the entry.
    boolean
    contains(Resource resource)
    Returns true if resource reference is part of the collection.
    Returns name of the collection.
    Returns path of the collection.
    Returns additional properties for a particular resource in Collection entry.
    Returns an iterator over resources referred in the collection in the specified order.
    Returns additional properties for a particular resource in Collection entry.
    void
    orderBefore(Resource srcResource, Resource destResource)
    This method inserts the referenced resource srcResource into the collection entry at the position immediately before the referenced resource destResource.
    boolean
    remove(Resource resource)
    Removes a entry of resource from collection & returns true if successful.
  • Field Details

  • Method Details

    • getName

      String getName()
      Returns name of the collection.
      Returns:
      name of the collection.
    • getPath

      String getPath()
      Returns path of the collection.
      Returns:
      path of the collection.
    • getResources

      Iterator<Resource> getResources()
      Returns an iterator over resources referred in the collection in the specified order.
      Returns:
      iterator over resources referred in collection.
    • getValueMap

      ValueMap getValueMap(Resource resource)
      Returns additional properties for a particular resource in Collection entry.
      Parameters:
      resource - resource for which to get the properties
      Returns:
      properties of the Collection entry as a ValueMap which will not be null
    • getProperties

      ModifiableValueMap getProperties(Resource resource)
      Returns additional properties for a particular resource in Collection entry.
      Parameters:
      resource - resource for which to get the properties
      Returns:
      properties of the Collection entry as ModifiableValueMap, returns null if no entry found or the entry cannot be adapted to a ModifiableValueMap
    • contains

      boolean contains(Resource resource)
      Returns true if resource reference is part of the collection.
      Parameters:
      resource - resource to be checked
      Returns:
      true if resource is part of the collection. false otherwise
    • add

      boolean add(Resource resource, Map<String,Object> properties) throws PersistenceException
      Creates a new entry in the collection at the last position and add a reference to resource in the entry. Changes are transient & have to be saved by calling resolver.commit()
      Parameters:
      resource - resource to be added
      properties - The additional properties to be stored with the collection entry (can be null).
      Returns:
      true if addition of resource to collection was successful or false if collection already contained the resource or resource is null.
      Throws:
      PersistenceException - if the operation fails
    • add

      boolean add(Resource resource) throws PersistenceException
      Creates a new entry in the collection at the last position and add a reference to resource in the entry. Changes are transient & have to be saved by calling resolver.commit()
      Parameters:
      resource - resource to be added
      Returns:
      true if addition of resource to collection was successful or false if collection already contained the resource or resource is null.
      Throws:
      PersistenceException - if the operation fails
    • remove

      boolean remove(Resource resource) throws PersistenceException
      Removes a entry of resource from collection & returns true if successful. Changes are transient & have to be saved by calling resolver.commit()
      Parameters:
      resource - resource reference to be removed
      Returns:
      true if resource reference was successfully removed from the collection. false if not removed/not present
      Throws:
      PersistenceException - if the operation fails
    • orderBefore

      void orderBefore(Resource srcResource, Resource destResource)
      This method inserts the referenced resource srcResource into the collection entry at the position immediately before the referenced resource destResource. To insert the referenced resource into last position, destResource can be null.
      Parameters:
      srcResource - Referenced resource that needs to be moved in the order
      destResource - Referenced resource before which the srcResource will be placed.