Package com.axelor.meta.db
Class MetaAction
- java.lang.Object
-
- com.axelor.db.Model
-
- com.axelor.auth.db.AuditableModel
-
- com.axelor.meta.db.MetaAction
-
@Entity public class MetaAction extends AuditableModel
This object stores the xml actions.
-
-
Constructor Summary
Constructors Constructor Description MetaAction()
MetaAction(String name)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
Boolean
getHome()
Specify whether this action can be used as home action.Long
getId()
String
getModel()
String
getModule()
String
getName()
Integer
getPriority()
String
getType()
String
getXml()
String
getXmlId()
int
hashCode()
void
setHome(Boolean home)
void
setId(Long id)
void
setModel(String model)
void
setModule(String module)
void
setName(String name)
void
setPriority(Integer priority)
void
setType(String type)
void
setXml(String xml)
void
setXmlId(String xmlId)
String
toString()
-
Methods inherited from class com.axelor.auth.db.AuditableModel
getCreatedBy, getCreatedOn, getUpdatedBy, getUpdatedOn
-
Methods inherited from class com.axelor.db.Model
getArchived, getCid, getVersion, isSelected, setArchived, setCid, setSelected, setVersion
-
-
-
-
Constructor Detail
-
MetaAction
public MetaAction()
-
MetaAction
public MetaAction(String name)
-
-
Method Detail
-
getPriority
public Integer getPriority()
-
setPriority
public void setPriority(Integer priority)
-
getXmlId
public String getXmlId()
-
setXmlId
public void setXmlId(String xmlId)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getType
public String getType()
-
setType
public void setType(String type)
-
getHome
public Boolean getHome()
Specify whether this action can be used as home action.- Returns:
- the property value
-
setHome
public void setHome(Boolean home)
-
getModel
public String getModel()
-
setModel
public void setModel(String model)
-
getModule
public String getModule()
-
setModule
public void setModule(String module)
-
getXml
public String getXml()
-
setXml
public void setXml(String xml)
-
-