Class GUIMenu
- java.lang.Object
-
- com.logicaldoc.gui.common.client.beans.GUIMenu
-
- All Implemented Interfaces:
Serializable
public class GUIMenu extends Object implements Serializable
Represents a Menu from the GUI view- Since:
- 6.0
- Author:
- Marco Meschieri - LogicalDOC
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GUIMenu()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAutomation()
String
getDescription()
long
getId()
String
getName()
long
getParentId()
int
getPosition()
GUIRight[]
getRights()
Long
getRoutineId()
Long
getSecurityRef()
int
getType()
boolean
isEnabled()
void
setAutomation(String automation)
void
setDescription(String description)
void
setEnabled(boolean enabled)
void
setId(long id)
void
setName(String name)
void
setParentId(long parentId)
void
setPosition(int position)
void
setRights(GUIRight[] rights)
void
setRoutineId(Long routineId)
void
setSecurityRef(Long securityRef)
void
setType(int type)
-
-
-
Method Detail
-
getId
public long getId()
-
setId
public void setId(long id)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getRights
public GUIRight[] getRights()
-
setRights
public void setRights(GUIRight[] rights)
-
isEnabled
public boolean isEnabled()
-
setEnabled
public void setEnabled(boolean enabled)
-
getRoutineId
public Long getRoutineId()
-
setRoutineId
public void setRoutineId(Long routineId)
-
getAutomation
public String getAutomation()
-
setAutomation
public void setAutomation(String automation)
-
getPosition
public int getPosition()
-
setPosition
public void setPosition(int position)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
getParentId
public long getParentId()
-
setParentId
public void setParentId(long parentId)
-
getSecurityRef
public Long getSecurityRef()
-
setSecurityRef
public void setSecurityRef(Long securityRef)
-
getType
public int getType()
-
setType
public void setType(int type)
-
-