Nuxeo ECM Projects 5.4.3-SNAPSHOT

Uses of Class
org.nuxeo.common.utils.Path

Packages that use Path
org.nuxeo.common.utils Various utility classes used for managing paths, jars, strings, files, etc. 
org.nuxeo.ecm.admin.repo   
org.nuxeo.ecm.core.api The core API of the Nuxeo platform, including: CoreSession, DocumentModel, Blob
org.nuxeo.ecm.core.api.impl   
org.nuxeo.ecm.core.api.model   
org.nuxeo.ecm.core.api.model.impl   
org.nuxeo.ecm.core.event.impl Event Service implementation. 
org.nuxeo.ecm.core.io   
org.nuxeo.ecm.core.io.impl   
org.nuxeo.ecm.core.trash   
org.nuxeo.ecm.webengine.ui.tree   
org.nuxeo.runtime.deployment.preprocessor.install.commands   
org.nuxeo.runtime.deployment.preprocessor.install.filters   
org.nuxeo.webengine.sites   
 

Uses of Path in org.nuxeo.common.utils
 

Methods in org.nuxeo.common.utils that return Path
 Path Path.addFileExtension(String extension)
           
 Path Path.addTrailingSeparator()
           
 Path Path.append(Path tail)
           
 Path Path.append(String tail)
           
static Path Path.createFromAbsolutePath(String path)
          Creates a path object from an absolute and canonical path.
static Path Path.createFromSegments(String[] segments)
           
 Path Path.makeAbsolute()
           
 Path Path.makeRelative()
           
 Path Path.removeFileExtension()
           
 Path Path.removeFirstSegments(int count)
           
 Path Path.removeLastSegments(int count)
           
 Path Path.removeTrailingSeparator()
           
 Path Path.uptoSegment(int count)
           
 

Methods in org.nuxeo.common.utils with parameters of type Path
 boolean PathFilterSet.accept(Path path)
           
 boolean PathFilter.accept(Path path)
           
 Path Path.append(Path tail)
           
 boolean Path.isPrefixOf(Path anotherPath)
           
 boolean FilePathPattern.match(Path path)
           
 int Path.matchingFirstSegments(Path anotherPath)
           
 

Constructors in org.nuxeo.common.utils with parameters of type Path
FilePathPattern(Path path)
           
 

Uses of Path in org.nuxeo.ecm.admin.repo
 

Methods in org.nuxeo.ecm.admin.repo with parameters of type Path
 void RepoStatInfo.addBlob(long size, Path path)
           
 void RepoStatInfo.addDoc(String type, Path path)
           
 void RepoStatInfo.addDoc(String type, Path path, boolean isVersion)
           
 void RepoStatInfo.childrenCount(long children, Path path)
           
 

Uses of Path in org.nuxeo.ecm.core.api
 

Methods in org.nuxeo.ecm.core.api that return Path
 Path DocumentModel.getPath()
          Gets the document path.
 

Uses of Path in org.nuxeo.ecm.core.api.impl
 

Methods in org.nuxeo.ecm.core.api.impl that return Path
 Path SimpleDocumentModel.getPath()
           
 Path DocumentModelImpl.getPath()
           
 

Constructors in org.nuxeo.ecm.core.api.impl with parameters of type Path
DocumentModelImpl(String sid, String type, String id, Path path, DocumentRef docRef, DocumentRef parentRef, String[] schemas, Set<String> facets)
          Deprecated. unused
DocumentModelImpl(String sid, String type, String id, Path path, Lock lock, DocumentRef docRef, DocumentRef parentRef, String[] schemas, Set<String> facets, String sourceId, String repositoryName)
          Constructor.
 

Uses of Path in org.nuxeo.ecm.core.api.model
 

Methods in org.nuxeo.ecm.core.api.model with parameters of type Path
 Property Property.resolvePath(Path path)
          Resolves the given path relative to the current property and return the property if any is found otherwise throws an exception.
 

Uses of Path in org.nuxeo.ecm.core.api.model.impl
 

Methods in org.nuxeo.ecm.core.api.model.impl that return Path
 Path DocumentPartImpl.collectPath(Path path)
           
 

Methods in org.nuxeo.ecm.core.api.model.impl with parameters of type Path
 Path DocumentPartImpl.collectPath(Path path)
           
 Property AbstractProperty.resolvePath(Path path)
           
 

Uses of Path in org.nuxeo.ecm.core.event.impl
 

Methods in org.nuxeo.ecm.core.event.impl that return Path
 Path ShallowDocumentModel.getPath()
           
 

Uses of Path in org.nuxeo.ecm.core.io
 

Methods in org.nuxeo.ecm.core.io that return Path
 Path ExportedDocument.getPath()
           
 

Methods in org.nuxeo.ecm.core.io with parameters of type Path
 void ExportedDocument.setPath(Path path)
           
 

Uses of Path in org.nuxeo.ecm.core.io.impl
 

Methods in org.nuxeo.ecm.core.io.impl that return Path
 Path ExportedDocumentImpl.getPath()
           
 

Methods in org.nuxeo.ecm.core.io.impl with parameters of type Path
 void ExportedDocumentImpl.setPath(Path path)
           
 

Constructors in org.nuxeo.ecm.core.io.impl with parameters of type Path
ExportedDocumentImpl(DocumentModel doc, Path path, boolean inlineBlobs)
           
 

Uses of Path in org.nuxeo.ecm.core.trash
 

Fields in org.nuxeo.ecm.core.trash with type parameters of type Path
 Set<Path> TrashInfo.rootPaths
          Paths of common tree roots of docs found ok.
 

Method parameters in org.nuxeo.ecm.core.trash with type arguments of type Path
 DocumentModel TrashServiceImpl.getAboveDocument(DocumentModel doc, Set<Path> rootPaths)
           
 DocumentModel TrashService.getAboveDocument(DocumentModel doc, Set<Path> paths)
          Gets the closest document's ancestor above all the paths.
 

Uses of Path in org.nuxeo.ecm.webengine.ui.tree
 

Methods in org.nuxeo.ecm.webengine.ui.tree that return Path
 Path TreeItemImpl.getPath()
           
 Path TreeItem.getPath()
          Gets the item path.
 

Methods in org.nuxeo.ecm.webengine.ui.tree with parameters of type Path
 TreeItem TreeModelImpl.find(Path path)
           
 TreeItem TreeModel.find(Path path)
          Like TreeModel.find(Path) but the path is expressed as a Path object.
 TreeItem TreeItemImpl.find(Path path)
           
 TreeItem TreeItem.find(Path path)
          Finds the item given its relative path to that item.
 TreeItem TreeModelImpl.findAndReveal(Path path)
           
 TreeItem TreeModel.findAndReveal(Path path)
          Like TreeModel.findAndReveal(Path) but the path is expressed as a Path object.
 TreeItem TreeItemImpl.findAndReveal(Path path)
           
 TreeItem TreeItem.findAndReveal(Path path)
          Finds the item given its relative path to that item and expand all its parents so that the item will be visible in the tree.
 

Uses of Path in org.nuxeo.runtime.deployment.preprocessor.install.commands
 

Constructors in org.nuxeo.runtime.deployment.preprocessor.install.commands with parameters of type Path
AppendCommand(Path src, Path dst)
           
AppendCommand(Path src, Path dst, boolean addNewLine, FileNamePattern pattern)
           
CopyCommand(Path src, Path dst)
          Constructor for copy command.
CopyCommand(Path src, Path dst, PathFilter filter)
           
DeleteCommand(Path path)
          Constructor for delete command.
MkdirCommand(Path path)
          Constructor for mkdir command.
MkfileCommand(Path path, byte[] content)
          Constructor for mkfile command.
MoveCommand(Path src, Path dst)
          Constructor for copy command.
MoveCommand(Path src, Path dst, PathFilter filter)
           
UnzipCommand(Path src, Path dst)
           
UnzipCommand(Path src, Path dst, PathFilter filter)
           
UnzipCommand(Path src, Path dst, PathFilter filter, String prefix)
           
UnzipCommand(Path src, Path dst, String prefix)
           
ZipCommand(Path src, Path dst)
           
ZipCommand(Path src, Path dst, String prefix)
           
ZipCommand(Path src, Path dst, String prefix, PathFilter filter)
           
 

Uses of Path in org.nuxeo.runtime.deployment.preprocessor.install.filters
 

Methods in org.nuxeo.runtime.deployment.preprocessor.install.filters with parameters of type Path
 boolean IncludeFilter.accept(Path path)
           
 boolean ExcludeFilter.accept(Path path)
           
 boolean AbstractFilter.accept(Path path, boolean defaultPolicy)
           
 

Constructors in org.nuxeo.runtime.deployment.preprocessor.install.filters with parameters of type Path
ExcludeFilter(Path pattern)
           
IncludeFilter(Path pattern)
           
 

Uses of Path in org.nuxeo.webengine.sites
 

Methods in org.nuxeo.webengine.sites that return Path
static Path JsonAdapter.getRelativePath(DocumentModel rootDoc, DocumentModel doc)
           
 


Nuxeo ECM Projects 5.4.3-SNAPSHOT

Copyright © 2011 Nuxeo SAS. All Rights Reserved.