Class AbstractActionType
- java.lang.Object
-
- com.hybris.cockpitng.config.jaxb.wizard.AbstractActionType
-
- Direct Known Subclasses:
BackType,CancelType,CustomType,DoneType,NextType
public abstract class AbstractActionType extends java.lang.ObjectJava class for AbstractActionType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="AbstractActionType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="if" type="{http://www.hybris.com/cockpitng/config/wizard-config}IfType" maxOccurs="unbounded" minOccurs="0"/> <choice minOccurs="0"> <sequence> <element name="save" type="{http://www.hybris.com/cockpitng/config/wizard-config}SaveType" maxOccurs="unbounded"/> </sequence> <element name="save-all" type="{http://www.hybris.com/cockpitng/config/wizard-config}SaveAllType"/> </choice> </sequence> <attribute name="visible" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="default-target" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<IfType>_ifprotected java.lang.StringdefaultTargetprotected java.util.List<SaveType>saveprotected SaveAllTypesaveAllprotected java.lang.Stringvisible
-
Constructor Summary
Constructors Constructor Description AbstractActionType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDefaultTarget()Gets the value of the defaultTarget property.java.util.List<IfType>getIf()Gets the value of the if property.java.util.List<SaveType>getSave()Gets the value of the save property.SaveAllTypegetSaveAll()Gets the value of the saveAll property.java.lang.StringgetVisible()Gets the value of the visible property.voidsetDefaultTarget(java.lang.String value)Sets the value of the defaultTarget property.voidsetSaveAll(SaveAllType value)Sets the value of the saveAll property.voidsetVisible(java.lang.String value)Sets the value of the visible property.
-
-
-
Field Detail
-
_if
protected java.util.List<IfType> _if
-
save
protected java.util.List<SaveType> save
-
saveAll
protected SaveAllType saveAll
-
visible
protected java.lang.String visible
-
defaultTarget
protected java.lang.String defaultTarget
-
-
Method Detail
-
getIf
public java.util.List<IfType> getIf()
Gets the value of the if property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the if property.For example, to add a new item, do as follows:
getIf().add(newItem);Objects of the following type(s) are allowed in the list
IfType
-
getSave
public java.util.List<SaveType> getSave()
Gets the value of the save property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the save property.For example, to add a new item, do as follows:
getSave().add(newItem);Objects of the following type(s) are allowed in the list
SaveType
-
getSaveAll
public SaveAllType getSaveAll()
Gets the value of the saveAll property.- Returns:
- possible object is
SaveAllType
-
setSaveAll
public void setSaveAll(SaveAllType value)
Sets the value of the saveAll property.- Parameters:
value- allowed object isSaveAllType
-
getVisible
public java.lang.String getVisible()
Gets the value of the visible property.- Returns:
- possible object is
String
-
setVisible
public void setVisible(java.lang.String value)
Sets the value of the visible property.- Parameters:
value- allowed object isString
-
getDefaultTarget
public java.lang.String getDefaultTarget()
Gets the value of the defaultTarget property.- Returns:
- possible object is
String
-
setDefaultTarget
public void setDefaultTarget(java.lang.String value)
Sets the value of the defaultTarget property.- Parameters:
value- allowed object isString
-
-