Uses of Class
ccc.domain.ResourceEntity

Packages that use ResourceEntity
ccc.commands Commands available in CCC. 
ccc.domain The core domain model for CCC. 
ccc.domain.sorting   
ccc.persistence   
 

Uses of ResourceEntity in ccc.commands
 

Methods in ccc.commands that return types with arguments of type ResourceEntity
 Command<? extends ResourceEntity> CommandFactory.createAliasCommand(Alias alias)
          Create a 'create alias' command.
 Command<? extends ResourceEntity> CommandFactory.createTemplateCommand(Template template)
          Create a 'create template' command.
 

Uses of ResourceEntity in ccc.domain
 

Subclasses of ResourceEntity in ccc.domain
 class AliasEntity
          An alias resource.
 class FileEntity
          A file resource.
 class FolderEntity
          A folder that can contain other resources.
 class HistoricalResource<S,T extends RevisionEntity<S>>
          A resource that records each update made over time.
 class PageEntity
          A page resource.
 class Search
          A search that can return other results.
 class TemplateEntity
          A template is used to define how a resource will be displayed.
 class WorkingCopySupport<T extends RevisionEntity<U>,U,V extends WorkingCopy<U>>
          Abstract helper class that provides working copy support for resources.
 

Methods in ccc.domain with type parameters of type ResourceEntity
<T extends ResourceEntity>
T
ResourceEntity.as(java.lang.Class<T> resourceType)
          Type-safe helper method to convert an instance of ResourceEntity to a subclass.
<T extends ResourceEntity>
java.util.List<T>
FolderEntity.getEntries(java.lang.Class<T> resourceType)
          Retrieve the entries in this folder in a type-safe list.
 

Methods in ccc.domain that return ResourceEntity
 ResourceEntity FolderEntity.getChild(java.util.UUID id)
          Get a child element via its ID.
 ResourceEntity FolderEntity.getEntryWithName(ResourceName resourceName)
          Retrieve an entry from this folder.
 ResourceEntity FolderEntity.getEntryWithName2(ResourceName name)
          Find the entry in this folder with the specified name.
 ResourceEntity CommentEntity.getResource()
          Accessor.
 ResourceEntity ResourceEntity.getRoot()
          Accessor for the root parent of this resource.
 ResourceEntity ActionEntity.getSubject()
          Accessor.
 ResourceEntity FolderEntity.navigateTo(ResourcePath path)
          Navigate from this folder to another resource described by the specified path.
 ResourceEntity AliasEntity.target()
          Accessor for the target field.
 

Methods in ccc.domain that return types with arguments of type ResourceEntity
 java.util.List<ResourceEntity> FolderEntity.getEntries()
          Accessor for entries.
 java.util.List<ResourceEntity> FolderEntity.getEntries(int count, int page, java.lang.String sortOrder)
          Accessor for entries.
 

Methods in ccc.domain with parameters of type ResourceEntity
 void FolderEntity.add(ResourceEntity resource)
          Add a resource to this folder.
 boolean FolderEntity.isAncestorOf(ResourceEntity resource)
          Determine if this folder is an ancestor of the specified resource.
 void FolderEntity.remove(ResourceEntity resource)
          Remove a resource from this folder.
 void AliasEntity.target(ResourceEntity target)
          Mutator for the target field.
 

Method parameters in ccc.domain with type arguments of type ResourceEntity
static java.util.List<ResourceSummary> ResourceEntity.mapResources(java.util.Collection<? extends ResourceEntity> resources)
          Map a collection of Resource to a collection of ResourceSummary.
 

Constructors in ccc.domain with parameters of type ResourceEntity
ActionEntity(CommandType type, java.util.Date executeAfter, UserEntity actor, ResourceEntity subject, java.util.Map<java.lang.String,java.lang.String> parameters)
          Constructor.
AliasEntity(java.lang.String title, ResourceEntity target)
          Constructor.
CommentEntity(ResourceEntity resource, java.lang.String body, java.lang.String author)
          Constructor.
 

Uses of ResourceEntity in ccc.domain.sorting
 

Methods in ccc.domain.sorting with parameters of type ResourceEntity
 int DateCreatedAscendingComparator.compare(ResourceEntity o1, ResourceEntity o2)
          
 int DateChangedAscendingComparator.compare(ResourceEntity o1, ResourceEntity o2)
          
 int AscendingIndexComparator.compare(ResourceEntity o1, ResourceEntity o2)
          
 int AlphaNumericAscendingNameComparator.compare(ResourceEntity o1, ResourceEntity o2)
          
 

Method parameters in ccc.domain.sorting with type arguments of type ResourceEntity
static void Sorter.sort(java.util.List<? extends ResourceEntity> resources, ResourceOrder order)
          Sort the supplied list.
 

Uses of ResourceEntity in ccc.persistence
 

Methods in ccc.persistence with type parameters of type ResourceEntity
<T extends ResourceEntity>
T
ResourceRepository.find(java.lang.Class<T> type, java.util.UUID id)
          Find a resource using its unique id.
 

Methods in ccc.persistence that return ResourceEntity
 ResourceEntity ResourceRepository.lookup(ResourcePath contentPath)
          Look up a resource.
 ResourceEntity ResourceRepository.lookupWithLegacyId(java.lang.String legacyId)
          Look up a resource, given its CCC6 id.
 

Methods in ccc.persistence that return types with arguments of type ResourceEntity
 java.util.List<ResourceEntity> ResourceRepository.list(ResourceCriteria criteria, FolderEntity f, java.lang.String sort, SortOrder sortOrder, int pageNo, int pageSize)
          List resources with given criteria.
 java.util.List<ResourceEntity> ResourceRepository.lookupWithMetadataKey(java.lang.String key)
          Look up a resource, given its metadata key.
 

Methods in ccc.persistence with parameters of type ResourceEntity
 long CommentRepositoryImpl.count(ResourceEntity resource, CommentStatus status)
          Count existing comments.
 long CommentRepository.count(ResourceEntity resource, CommentStatus status)
          Count existing comments.
 void ResourceRepository.create(ResourceEntity newResource)
          Create a new resource.
 java.util.List<CommentEntity> CommentRepositoryImpl.list(ResourceEntity resource, CommentStatus status, java.lang.String sort, SortOrder sortOrder, int pageNo, int pageSize)
          List existing comments.
 java.util.List<CommentEntity> CommentRepository.list(ResourceEntity resource, CommentStatus status, java.lang.String sort, SortOrder sortOrder, int pageNo, int pageSize)
          List existing comments.
 



Copyright © 2010. All Rights Reserved.