Package org.craftercms.studio.api.v1.to
Class DmFolderConfigTO
- java.lang.Object
-
- org.craftercms.studio.api.v1.to.DmFolderConfigTO
-
- All Implemented Interfaces:
Serializable
public class DmFolderConfigTO extends Object implements Serializable
DmFolderConfig that specifies how each folder in UI maps to the folder structure in DM web project- Author:
- hyanghee, Dejan Brkic
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected boolean_attachRootPrefixprotected String_nameprotected String_pathprotected boolean_readDirectChildren
-
Constructor Summary
Constructors Constructor Description DmFolderConfigTO()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()StringgetPath()booleanisAttachRootPrefix()booleanisReadDirectChildren()voidsetAttachRootPrefix(boolean attachRootPrefix)voidsetName(String name)voidsetPath(String path)voidsetReadDirectChildren(boolean readDirectChildren)
-
-
-
Method Detail
-
isAttachRootPrefix
public boolean isAttachRootPrefix()
- Returns:
- the attachRootPrefix
-
setAttachRootPrefix
public void setAttachRootPrefix(boolean attachRootPrefix)
- Parameters:
attachRootPrefix- the attachRootPrefix to set
-
isReadDirectChildren
public boolean isReadDirectChildren()
- Returns:
- the readDirectChildren
-
setReadDirectChildren
public void setReadDirectChildren(boolean readDirectChildren)
- Parameters:
readDirectChildren- the readDirectChildren to set
-
getPath
public String getPath()
- Returns:
- the path
-
setPath
public void setPath(String path)
- Parameters:
path- the path to set
-
getName
public String getName()
- Returns:
- the name
-
setName
public void setName(String name)
- Parameters:
name- the name to set
-
-