Package com.axelor.meta.db
Class MetaModule
- java.lang.Object
-
- com.axelor.db.Model
-
- com.axelor.auth.db.AuditableModel
-
- com.axelor.meta.db.MetaModule
-
@Entity public class MetaModule extends AuditableModel
This object stores the modules.
-
-
Constructor Summary
Constructors Constructor Description MetaModule()MetaModule(String name)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddDepend(MetaModule item)Add the givenMetaModuleitem to thedependscollection.voidclearDepends()Clear thedependscollection.booleanequals(Object obj)BooleangetApplication()Set<MetaModule>getDepends()StringgetDescription()LonggetId()StringgetModuleVersion()StringgetName()StringgetTitle()inthashCode()voidremoveDepend(MetaModule item)Remove the givenMetaModuleitem from thedependscollection.voidsetApplication(Boolean application)voidsetDepends(Set<MetaModule> depends)voidsetDescription(String description)voidsetId(Long id)voidsetModuleVersion(String moduleVersion)voidsetName(String name)voidsetTitle(String title)StringtoString()-
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
-
MetaModule
public MetaModule()
-
MetaModule
public MetaModule(String name)
-
-
Method Detail
-
getName
public String getName()
-
setName
public void setName(String name)
-
getTitle
public String getTitle()
-
setTitle
public void setTitle(String title)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
getModuleVersion
public String getModuleVersion()
-
setModuleVersion
public void setModuleVersion(String moduleVersion)
-
getDepends
public Set<MetaModule> getDepends()
-
setDepends
public void setDepends(Set<MetaModule> depends)
-
addDepend
public void addDepend(MetaModule item)
Add the givenMetaModuleitem to thedependscollection.- Parameters:
item- the item to add
-
removeDepend
public void removeDepend(MetaModule item)
Remove the givenMetaModuleitem from thedependscollection.- Parameters:
item- the item to remove
-
clearDepends
public void clearDepends()
Clear thedependscollection.
-
getApplication
public Boolean getApplication()
-
setApplication
public void setApplication(Boolean application)
-
-