Interface RawRepository
-
public interface RawRepository
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.jcr.Nodecreate(java.lang.String id)Create a new empty node at the specific id, make sure its parents existvoiddelete(java.lang.String id)java.util.List<javax.jcr.Node>findNodesByType(com.xebialabs.deployit.plugin.api.reflect.Type type)javax.jcr.Noderead(java.lang.String id)voidrenameType(java.lang.String oldTypeName, java.lang.String newTypeName)
-
-
-
Method Detail
-
renameType
void renameType(java.lang.String oldTypeName, java.lang.String newTypeName)
-
read
javax.jcr.Node read(java.lang.String id)
-
create
javax.jcr.Node create(java.lang.String id)
Create a new empty node at the specific id, make sure its parents exist- Parameters:
id- the id for the new Node- Returns:
- the created JCR Node
-
delete
void delete(java.lang.String id)
-
findNodesByType
java.util.List<javax.jcr.Node> findNodesByType(com.xebialabs.deployit.plugin.api.reflect.Type type)
-
-