Package org.cyclos.entities.system
Class CustomWizard
-
- All Implemented Interfaces:
Cloneable,Comparable<NamedEntity>,HasOrder,HasSvgIcon,ProcessableForDataTranslation,DefinesNetwork,IEntity,IInternalNamedEntity,INamedEntity
- Direct Known Subclasses:
RegistrationWizard,WizardWithChannels
@Entity public abstract class CustomWizard extends ConfigurationOrderableEntity implements HasSvgIcon, DefinesNetwork
A custom wizard is a series of steps to perform an operation
-
-
Constructor Summary
Constructors Constructor Description CustomWizard()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description List<CustomWizardField>getCustomFields()DataTranslationTypegetDataTranslationType()If this entity allows data translation, should return the translation typeabstract CustomWizardNaturegetNature()NetworkgetNetwork()Returns the network this entity belongs toCustomWizardResultTypegetResultType()CustomScriptgetScript()StringgetScriptParameters()List<CustomWizardStep>getSteps()StringgetSvgIcon()booleanisShowProgress()voidsetCustomFields(List<CustomWizardField> customFields)voidsetNetwork(Network network)voidsetResultType(CustomWizardResultType resultType)voidsetScript(CustomScript script)voidsetScriptParameters(String scriptParameters)voidsetShowProgress(boolean showProgress)voidsetSteps(List<CustomWizardStep> steps)voidsetSvgIcon(String svgIcon)-
Methods inherited from class org.cyclos.entities.ConfigurationOrderableEntity
compareTo, getOrder, setOrder, toString
-
Methods inherited from class org.cyclos.entities.ConfigurationEntity
getDescription, getInternalName, setDescription, setInternalName, toShortString
-
Methods inherited from class org.cyclos.entities.NamedEntity
getName, getNames, setName
-
Methods inherited from class org.cyclos.entities.BaseEntity
getVersion
-
Methods inherited from class org.cyclos.entities.NetworkedEntity
isGlobal
-
Methods inherited from class org.cyclos.entities.SimpleEntity
clone, equals, getId, getId, getIds, getUniqueIds, getUniqueIds, hashCode, isPersistent, isTransient
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.cyclos.model.IInternalNamedEntity
matches
-
-
-
-
Method Detail
-
getCustomFields
public List<CustomWizardField> getCustomFields()
-
getDataTranslationType
public DataTranslationType getDataTranslationType()
Description copied from class:BaseEntityIf this entity allows data translation, should return the translation type- Overrides:
getDataTranslationTypein classBaseEntity- Returns:
-
getNature
public abstract CustomWizardNature getNature()
-
getNetwork
public Network getNetwork()
Description copied from class:NetworkedEntityReturns the network this entity belongs to- Specified by:
getNetworkin classNetworkedEntity
-
getResultType
public CustomWizardResultType getResultType()
-
getScript
public CustomScript getScript()
-
getScriptParameters
public String getScriptParameters()
-
getSteps
public List<CustomWizardStep> getSteps()
-
getSvgIcon
public String getSvgIcon()
- Specified by:
getSvgIconin interfaceHasSvgIcon
-
isShowProgress
public boolean isShowProgress()
-
setCustomFields
public void setCustomFields(List<CustomWizardField> customFields)
-
setNetwork
public void setNetwork(Network network)
- Specified by:
setNetworkin interfaceDefinesNetwork
-
setResultType
public void setResultType(CustomWizardResultType resultType)
-
setScript
public void setScript(CustomScript script)
-
setScriptParameters
public void setScriptParameters(String scriptParameters)
-
setShowProgress
public void setShowProgress(boolean showProgress)
-
setSteps
public void setSteps(List<CustomWizardStep> steps)
-
setSvgIcon
public void setSvgIcon(String svgIcon)
- Specified by:
setSvgIconin interfaceHasSvgIcon
-
-