Package org.hippoecm.repository.api
Interface Folder
-
- All Superinterfaces:
Serializable
public interface Folder extends Serializable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
addMixin(String mixin)
Add a mixin by name and returntrue
if it was not present yet andfalse
otherwise.String
getIdentifier()
Returns the identifier of the folderSet<String>
getMixins()
boolean
removeMixin(String mixin)
Remove a mixin by name and returntrue
if it was present andfalse
otherwise.
-
-
-
Method Detail
-
getIdentifier
String getIdentifier()
Returns the identifier of the folder- Returns:
- identifier
-
addMixin
boolean addMixin(String mixin)
Add a mixin by name and returntrue
if it was not present yet andfalse
otherwise.- Parameters:
mixin
- the name of the mixin- Returns:
- if the mixin being added was not present yet
-
removeMixin
boolean removeMixin(String mixin)
Remove a mixin by name and returntrue
if it was present andfalse
otherwise.- Parameters:
mixin
- the name of the mixin- Returns:
- if the mixin being removed was present
-
-