Package com.day.crx.io
Interface CRXImportHandler
-
public interface CRXImportHandler
This Interface defines...
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getIntermediateHandling()
String
getIntermediateNodeType()
int
getUuidBehavior()
boolean
importCRX(String absPath, InputStream in)
void
setIntermediateHandling(int intermediateHandling)
void
setIntermediateNodeType(String intermediateNodeType)
void
setUuidBehavior(int uuidBehavior)
-
-
-
Field Detail
-
IH_ERROR
static final int IH_ERROR
flag for intermediate node handling- See Also:
- Constant Field Values
-
IH_AUTO
static final int IH_AUTO
flag for intermediate node handling- See Also:
- Constant Field Values
-
IH_COPY
static final int IH_COPY
flag for intermediate node handling- See Also:
- Constant Field Values
-
IH_FIXED
static final int IH_FIXED
flag for intermediate node handling- See Also:
- Constant Field Values
-
-
Method Detail
-
importCRX
boolean importCRX(String absPath, InputStream in) throws IOException, RepositoryException
- Throws:
IOException
RepositoryException
-
getIntermediateHandling
int getIntermediateHandling()
-
setIntermediateHandling
void setIntermediateHandling(int intermediateHandling)
-
getIntermediateNodeType
String getIntermediateNodeType() throws NamespaceException
- Throws:
NamespaceException
-
setIntermediateNodeType
void setIntermediateNodeType(String intermediateNodeType) throws NamespaceException
- Throws:
NamespaceException
-
getUuidBehavior
int getUuidBehavior()
- Returns:
- the uuid behaviour
- See Also:
ImportUUIDBehavior
-
setUuidBehavior
void setUuidBehavior(int uuidBehavior)
- Parameters:
uuidBehavior
-- See Also:
ImportUUIDBehavior
-
-