Class WpsProcessExecute
- java.lang.Object
-
- de.terrestris.shoguncore.model.PersistentObject
-
- de.terrestris.shoguncore.model.wps.WpsParameter
-
- de.terrestris.shoguncore.model.wps.WpsReference
-
- de.terrestris.shoguncore.model.wps.WpsProcessExecute
-
- All Implemented Interfaces:
java.io.Serializable
@Entity public class WpsProcessExecute extends WpsReference
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WpsProcessExecute()Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.lang.StringgetIdentifier()java.util.Map<java.lang.String,WpsParameter>getInput()java.util.Map<java.lang.String,java.lang.Object>getInputDefaultValues()inthashCode()voidsetIdentifier(java.lang.String identifier)voidsetInput(java.util.Map<java.lang.String,WpsParameter> input)voidsetInputDefaultValues(java.util.Map<java.lang.String,java.lang.Object> inputDefaultValues)java.lang.StringtoString()-
Methods inherited from class de.terrestris.shoguncore.model.wps.WpsReference
getBody, getMethod, getMimeType, getUrl, setBody, setMethod, setMimeType, setUrl
-
Methods inherited from class de.terrestris.shoguncore.model.wps.WpsParameter
getClassType, getDisplayName, getSupportedFormats, getSupportedGeometryTypes, getValueType, setDisplayName, setSupportedFormats, setSupportedGeometryTypes, setValueType
-
Methods inherited from class de.terrestris.shoguncore.model.PersistentObject
getCreated, getGroupPermissions, getId, getModified, getUserPermissions, setGroupPermissions, setModified, setUserPermissions
-
-
-
-
Method Detail
-
getIdentifier
public java.lang.String getIdentifier()
- Returns:
- the identifier
-
setIdentifier
public void setIdentifier(java.lang.String identifier)
- Parameters:
identifier- the identifier to set
-
getInput
public java.util.Map<java.lang.String,WpsParameter> getInput()
- Returns:
- the input
-
setInput
public void setInput(java.util.Map<java.lang.String,WpsParameter> input)
- Parameters:
input- the input to set
-
getInputDefaultValues
public java.util.Map<java.lang.String,java.lang.Object> getInputDefaultValues()
- Returns:
- the inputDefaultValues
-
setInputDefaultValues
public void setInputDefaultValues(java.util.Map<java.lang.String,java.lang.Object> inputDefaultValues)
- Parameters:
inputDefaultValues- the inputDefaultValues to set
-
hashCode
public int hashCode()
- Overrides:
hashCodein classWpsReference- See Also:
According to http://stackoverflow.com/questions/27581/overriding-equals-and-hashcode-in-java it is recommended only to use getter-methods when using ORM like Hibernate
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classWpsReference- See Also:
According to http://stackoverflow.com/questions/27581/overriding-equals-and-hashcode-in-java it is recommended only to use getter-methods when using ORM like Hibernate
-
toString
public java.lang.String toString()
- Overrides:
toStringin classWpsReference
-
-