Uses of Class
ccc.api.core.File

Packages that use File
ccc.api.core   
ccc.api.jaxrs   
ccc.api.jaxrs.providers   
ccc.client.actions   
ccc.client.gwt.binding   
ccc.client.gwt.remoting   
ccc.client.presenters   
ccc.commands Commands available in CCC. 
ccc.domain The core domain model for CCC. 
ccc.plugins.s11n.json   
ccc.services.ejb3 EJB3 implementation of the CCC API. 
ccc.web.rendering   
 

Uses of File in ccc.api.core
 

Methods in ccc.api.core that return File
 File Files.retrieve(java.util.UUID fileId)
          Get the representation of an existing CCC file.
 

Methods in ccc.api.core that return types with arguments of type File
 PagedCollection<File> Files.getPagedImages(java.util.UUID folderId, int pageNo, int pageSize)
          List all images of the given folder id.
 

Methods in ccc.api.core with parameters of type File
 ResourceSummary Files.create(File file)
          Create a new CCC file.
 ResourceSummary Files.createTextFile(File textFile)
          Deprecated. 
 void Files.update(java.util.UUID id, File file)
          Update an existing CCC file.
 ResourceSummary Files.updateFile(java.util.UUID fileId, File file)
          Update an existing CCC file.
 

Uses of File in ccc.api.jaxrs
 

Methods in ccc.api.jaxrs that return File
 File FilesImpl.retrieve(java.util.UUID fileId)
          Get the representation of an existing CCC file.
 

Methods in ccc.api.jaxrs that return types with arguments of type File
 PagedCollection<File> FilesImpl.getPagedImages(java.util.UUID folderId, int pageNo, int pageSize)
          List all images of the given folder id.
 

Methods in ccc.api.jaxrs with parameters of type File
 ResourceSummary FilesImpl.create(File file)
          Create a new CCC file.
 ResourceSummary FilesImpl.createTextFile(File textFile)
          Create a new text file in CCC.
 void FilesImpl.update(java.util.UUID id, File file)
          Update an existing CCC file.
 ResourceSummary FilesImpl.updateFile(java.util.UUID fileId, File file)
          Update an existing CCC file.
 

Uses of File in ccc.api.jaxrs.providers
 

Methods in ccc.api.jaxrs.providers that return File
 File FileReader.readFrom(java.lang.Class<File> arg0, java.lang.reflect.Type arg1, java.lang.annotation.Annotation[] arg2, javax.ws.rs.core.MediaType arg3, javax.ws.rs.core.MultivaluedMap<java.lang.String,java.lang.String> arg4, java.io.InputStream arg5)
          
 

Methods in ccc.api.jaxrs.providers with parameters of type File
 long FileReader.getSize(File t, java.lang.Class<?> type, java.lang.reflect.Type genericType, java.lang.annotation.Annotation[] annotations, javax.ws.rs.core.MediaType mediaType)
          
 void FileReader.writeTo(File t, java.lang.Class<?> type, java.lang.reflect.Type genericType, java.lang.annotation.Annotation[] annotations, javax.ws.rs.core.MediaType mediaType, javax.ws.rs.core.MultivaluedMap<java.lang.String,java.lang.Object> httpHeaders, java.io.OutputStream entityStream)
          
 

Method parameters in ccc.api.jaxrs.providers with type arguments of type File
 File FileReader.readFrom(java.lang.Class<File> arg0, java.lang.reflect.Type arg1, java.lang.annotation.Annotation[] arg2, javax.ws.rs.core.MediaType arg3, javax.ws.rs.core.MultivaluedMap<java.lang.String,java.lang.String> arg4, java.io.InputStream arg5)
          
 

Uses of File in ccc.client.actions
 

Constructors in ccc.client.actions with parameters of type File
CreateTextFileAction(File dto)
          Constructor.
EditTextFileAction(File dto)
          Constructor.
 

Uses of File in ccc.client.gwt.binding
 

Methods in ccc.client.gwt.binding with parameters of type File
static com.extjs.gxt.ui.client.data.BeanModel DataBinding.bindFileSummary(File file)
          Create a model data object for a file.
 

Method parameters in ccc.client.gwt.binding with type arguments of type File
static java.util.List<com.extjs.gxt.ui.client.data.BeanModel> DataBinding.bindFileSummary(java.util.Collection<File> files)
          Create model data objects for a collection of files.
 

Uses of File in ccc.client.gwt.remoting
 

Method parameters in ccc.client.gwt.remoting with type arguments of type File
protected abstract  void GetImagesPagedAction.execute(java.util.Collection<File> images, int totalCount)
          Handle the data returned from the server.
 

Uses of File in ccc.client.presenters
 

Constructors in ccc.client.presenters with parameters of type File
EditTextFilePresenter(EditTextFile view, File model)
          Constructor.
 

Uses of File in ccc.commands
 

Methods in ccc.commands with parameters of type File
 Command<FileEntity> CommandFactory.createFileCommand(java.util.UUID parentFolder, File file, java.lang.String title, java.lang.String description, ResourceName resourceName, RevisionMetadata rm, java.io.InputStream dataStream)
          Create a 'create file' command.
 

Constructors in ccc.commands with parameters of type File
UpdateFileCommand(IRepositoryFactory repoFactory, java.util.UUID fileId, File fileDelta, java.lang.String comment, boolean isMajorEdit, java.io.InputStream dataStream)
          Constructor.
 

Uses of File in ccc.domain
 

Methods in ccc.domain that return File
 File FileWorkingCopy.delta()
          Retrieve the working copy's state.
 File FileRevision.delta()
          Retrieve the revision's state.
 File FileEntity.deltaFile()
          Create a delta for a file.
 File FileEntity.forCurrentRevision()
          Create a snapshot for the current revision.
 File FileEntity.forSpecificRevision(int revNo)
          Create a snapshot for the specified revision.
 File FileEntity.forWorkingCopy()
          Create a snapshot for the working copy.
 File FileEntity.mapFile()
          Create a summary of a file.
 File FileEntity.mapTextFile(DataRepository dataRepo)
          Create a summary of a text file.
 

Methods in ccc.domain that return types with arguments of type File
static java.util.List<File> FileEntity.mapFiles(java.util.Collection<FileEntity> files)
          Create summaries for a collection of files.
 

Methods in ccc.domain with parameters of type File
protected  FileWorkingCopy FileEntity.createWorkingCopy(File delta)
          Create a working copy from a delta.
 void FileWorkingCopy.delta(File snapshot)
          Update this working copy.
static java.lang.String FileEntity.read(DataRepository dm, File file)
          Helper method that reads a file's contents into a string.
protected  void FileEntity.update(File delta, RevisionMetadata metadata)
          Update the resource from the specified delta.
 

Constructors in ccc.domain with parameters of type File
FileWorkingCopy(File delta)
          Constructor.
 

Uses of File in ccc.plugins.s11n.json
 

Methods in ccc.plugins.s11n.json that return File
protected  File FileSerializer.createObject()
          Create a new instance of type T.
 File FileSerializer.read(Json json)
          Deserialize from a representation.
 

Methods in ccc.plugins.s11n.json with parameters of type File
 Json FileSerializer.write(Json json, File instance)
          Serialize to representation.
 

Uses of File in ccc.services.ejb3
 

Methods in ccc.services.ejb3 that return File
 File FilesEJB.retrieve(java.util.UUID fileId)
          Get the representation of an existing CCC file.
 

Methods in ccc.services.ejb3 that return types with arguments of type File
 PagedCollection<File> FilesEJB.getPagedImages(java.util.UUID folderId, int pageNo, int pageSize)
          List all images of the given folder id.
 

Methods in ccc.services.ejb3 with parameters of type File
 ResourceSummary FilesEJB.create(File file)
          Create a new CCC file.
 ResourceSummary FilesEJB.createTextFile(File file)
          Create a new text file in CCC.
 void FilesEJB.update(java.util.UUID id, File file)
          Update an existing CCC file.
 ResourceSummary FilesEJB.updateFile(java.util.UUID fileId, File file)
          Update an existing CCC file.
 

Uses of File in ccc.web.rendering
 

Constructors in ccc.web.rendering with parameters of type File
FileBody(File file)
          Constructor.
 



Copyright © 2010. All Rights Reserved.