Package de.terrestris.shoguncore.model
Class Plugin
- java.lang.Object
-
- de.terrestris.shoguncore.model.PersistentObject
-
- de.terrestris.shoguncore.model.Plugin
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
WpsPlugin
@Entity public class Plugin extends PersistentObject
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Plugin()Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)StringgetClassName()Set<File>getFileUploads()StringgetName()StringgetSourceCode()StringgetStyleSheet()BooleangetSystemPlugin()StringgetXtype()inthashCode()voidsetClassName(String className)voidsetFileUploads(Set<File> fileUploads)voidsetName(String name)voidsetSourceCode(String sourceCode)voidsetStyleSheet(String styleSheet)voidsetSystemPlugin(Boolean systemPlugin)voidsetXtype(String xtype)StringtoString()-
Methods inherited from class de.terrestris.shoguncore.model.PersistentObject
getCreated, getGroupPermissions, getId, getModified, getUserPermissions, setGroupPermissions, setModified, setUserPermissions
-
-
-
-
Method Detail
-
getName
public String getName()
- Returns:
- the name
-
setName
public void setName(String name)
- Parameters:
name- the name to set
-
getClassName
public String getClassName()
- Returns:
- the className
-
setClassName
public void setClassName(String className)
- Parameters:
className- the className to set
-
getXtype
public String getXtype()
- Returns:
- the xtype
-
setXtype
public void setXtype(String xtype)
- Parameters:
xtype- the xtype to set
-
getSourceCode
public String getSourceCode()
- Returns:
- the sourceCode
-
setSourceCode
public void setSourceCode(String sourceCode)
- Parameters:
sourceCode- the sourceCode to set
-
getStyleSheet
public String getStyleSheet()
- Returns:
- the styleSheet
-
setStyleSheet
public void setStyleSheet(String styleSheet)
- Parameters:
styleSheet- the styleSheet to set
-
getSystemPlugin
public Boolean getSystemPlugin()
- Returns:
- the systemPlugin
-
setSystemPlugin
public void setSystemPlugin(Boolean systemPlugin)
- Parameters:
systemPlugin- the systemPlugin to set
-
setFileUploads
public void setFileUploads(Set<File> fileUploads)
- Parameters:
fileUploads- the fileUploads to set
-
hashCode
public int hashCode()
-
equals
public boolean equals(Object obj)
-
toString
public String toString()
- Overrides:
toStringin classPersistentObject
-
-