Package | Description |
---|---|
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 | |
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.webdav.backend | |
org.nuxeo.ecm.webengine.ui.tree | |
org.nuxeo.runtime.deployment.preprocessor.install.commands | |
org.nuxeo.runtime.deployment.preprocessor.install.filters | |
org.nuxeo.webengine.sites |
Modifier and Type | Method and Description |
---|---|
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) |
Modifier and Type | Method and Description |
---|---|
boolean |
PathFilterSet.accept(Path path) |
boolean |
PathFilter.accept(Path path) |
Path |
Path.append(Path tail) |
static void |
FileUtils.copyTree(File src,
File dst,
Path prefix,
PathFilter filter) |
boolean |
Path.isPrefixOf(Path anotherPath) |
boolean |
FilePathPattern.match(Path path) |
int |
Path.matchingFirstSegments(Path anotherPath) |
Constructor and Description |
---|
FilePathPattern(Path path) |
Modifier and Type | Method and Description |
---|---|
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) |
Modifier and Type | Method and Description |
---|---|
Path |
DocumentModel.getPath()
Gets the document path.
|
Modifier and Type | Method and Description |
---|---|
Path |
SimpleDocumentModel.getPath() |
Path |
DocumentModelImpl.getPath() |
Constructor and Description |
---|
DocumentModelImpl(String sid,
String type,
String id,
Path path,
DocumentRef docRef,
DocumentRef parentRef,
String[] schemas,
Set<String> facets,
String sourceId,
String repositoryName,
boolean isProxy) |
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
Path |
DocumentPartImpl.collectPath(Path path) |
Modifier and Type | Method and Description |
---|---|
Path |
DocumentPartImpl.collectPath(Path path) |
Property |
AbstractProperty.resolvePath(Path path) |
Modifier and Type | Method and Description |
---|---|
Path |
ShallowDocumentModel.getPath() |
Modifier and Type | Method and Description |
---|---|
Path |
ExportedDocument.getPath() |
Modifier and Type | Method and Description |
---|---|
void |
ExportedDocument.setPath(Path path) |
Modifier and Type | Method and Description |
---|---|
Path |
ExportedDocumentImpl.getPath() |
Modifier and Type | Method and Description |
---|---|
void |
ExportedDocumentImpl.setPath(Path path) |
Constructor and Description |
---|
ExportedDocumentImpl(DocumentModel doc,
Path path,
boolean inlineBlobs) |
TypedExportedDocumentImpl(DocumentModel doc,
Path path,
boolean inlineBlobs)
Instantiates a new typed exported document impl.
|
Modifier and Type | Field and Description |
---|---|
Set<Path> |
TrashInfo.rootPaths
Paths of common tree roots of docs found ok.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
Path |
SimpleBackend.parseLocation(String location) |
Path |
Backend.parseLocation(String location) |
Path |
AbstractVirtualBackend.parseLocation(String location) |
Modifier and Type | Method and Description |
---|---|
Path |
TreeItemImpl.getPath() |
Path |
TreeItem.getPath()
Gets the item path.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Constructor and Description |
---|
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) |
CopyCommand(Path src,
Path dst,
Path prefix,
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) |
Modifier and Type | Method and Description |
---|---|
boolean |
IncludeFilter.accept(Path path) |
boolean |
ExcludeFilter.accept(Path path) |
boolean |
AbstractFilter.accept(Path path,
boolean defaultPolicy) |
Constructor and Description |
---|
ExcludeFilter(Path pattern) |
IncludeFilter(Path pattern) |
Modifier and Type | Method and Description |
---|---|
static Path |
JsonAdapter.getRelativePath(DocumentModel rootDoc,
DocumentModel doc) |
Copyright © 2015 Nuxeo SA. All rights reserved.