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 void
addDepend(MetaModule item)
Add the givenMetaModule
item to thedepends
collection.void
clearDepends()
Clear thedepends
collection.boolean
equals(Object obj)
Boolean
getApplication()
Set<MetaModule>
getDepends()
String
getDescription()
Long
getId()
String
getModuleVersion()
String
getName()
String
getTitle()
int
hashCode()
void
removeDepend(MetaModule item)
Remove the givenMetaModule
item from thedepends
collection.void
setApplication(Boolean application)
void
setDepends(Set<MetaModule> depends)
void
setDescription(String description)
void
setId(Long id)
void
setModuleVersion(String moduleVersion)
void
setName(String name)
void
setTitle(String title)
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
-
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 givenMetaModule
item to thedepends
collection.- Parameters:
item
- the item to add
-
removeDepend
public void removeDepend(MetaModule item)
Remove the givenMetaModule
item from thedepends
collection.- Parameters:
item
- the item to remove
-
clearDepends
public void clearDepends()
Clear thedepends
collection.
-
getApplication
public Boolean getApplication()
-
setApplication
public void setApplication(Boolean application)
-
-