Package org.apache.jackrabbit.vault.rcp
Interface RcpTask
-
- All Known Implementing Classes:
RcpTaskImpl
public interface RcpTask
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
RcpTask.Result
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConnectionOptions
getConnectionOptions()
String
getDestination()
List<String>
getExcludes()
WorkspaceFilter
getFilter()
String
getId()
RepositoryCopier
getRcp()
RcpTask.Result
getResult()
RepositoryAddress
getSource()
boolean
isRecursive()
boolean
start(Session session)
boolean
stop()
-
-
-
Method Detail
-
getId
String getId()
-
getSource
RepositoryAddress getSource()
-
getDestination
String getDestination()
-
start
boolean start(Session session) throws RepositoryException
- Throws:
RepositoryException
-
stop
boolean stop()
-
getRcp
RepositoryCopier getRcp()
-
isRecursive
boolean isRecursive()
-
getResult
RcpTask.Result getResult()
-
getExcludes
List<String> getExcludes()
- Returns:
- either
null
in case no excludes are set or a list of excludes (regex patterns)
-
getFilter
WorkspaceFilter getFilter()
- Returns:
- internal filter used when the content is exported
-
getConnectionOptions
ConnectionOptions getConnectionOptions()
-
-