Package io.jenkins.plugins.ksm.notation
Class KsmNotationItem
- java.lang.Object
-
- io.jenkins.plugins.ksm.notation.KsmNotationItem
-
public class KsmNotationItem extends Object
-
-
Constructor Summary
Constructors Constructor Description KsmNotationItem(String destination, String envVar, String filePath, String error)
KsmNotationItem(String destination, String envVar, String filePath, String notation, String uid, KsmFieldDataEnumType fieldDataType, String fieldKey, Boolean returnSingle, Integer arrayIndex, String dictKey, boolean allowFailure)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clearError()
boolean
getAllowFailure()
Integer
getArrayIndex()
String
getDestination()
String
getDictKey()
String
getEnvVar()
String
getError()
KsmFieldDataEnumType
getFieldDataType()
String
getFieldKey()
String
getFilePath()
String
getName()
String
getNotation()
Boolean
getReturnSingle()
String
getUid()
Object
getValue()
boolean
isDestinationEnvVar()
void
setAllowFailure(boolean allowFailure)
void
setArrayIndex(Integer arrayIndex)
void
setDestination(String destination)
void
setDictKey(String dictKey)
void
setEnvVar(String envVar)
void
setError(String error)
void
setFieldDataType(KsmFieldDataEnumType fieldDataType)
void
setFieldKey(String fieldKey)
void
setFilePath(String filePath)
void
setNotation(String notation)
void
setReturnSingle(Boolean returnSingle)
void
setUid(String uid)
void
setValue(Object value)
-
-
-
Method Detail
-
getName
public String getName()
-
getDestination
public String getDestination()
-
getEnvVar
public String getEnvVar()
-
getFilePath
public String getFilePath()
-
getNotation
public String getNotation()
-
getUid
public String getUid()
-
getFieldDataType
public KsmFieldDataEnumType getFieldDataType()
-
getFieldKey
public String getFieldKey()
-
getReturnSingle
public Boolean getReturnSingle()
-
getArrayIndex
public Integer getArrayIndex()
-
getDictKey
public String getDictKey()
-
getValue
public Object getValue()
-
getAllowFailure
public boolean getAllowFailure()
-
getError
public String getError()
-
setDestination
@DataBoundSetter public void setDestination(String destination)
-
setEnvVar
@DataBoundSetter public void setEnvVar(String envVar)
-
setFilePath
@DataBoundSetter public void setFilePath(String filePath)
-
setNotation
@DataBoundSetter public void setNotation(String notation)
-
setUid
@DataBoundSetter public void setUid(String uid)
-
setFieldDataType
@DataBoundSetter public void setFieldDataType(KsmFieldDataEnumType fieldDataType)
-
setFieldKey
@DataBoundSetter public void setFieldKey(String fieldKey)
-
setReturnSingle
@DataBoundSetter public void setReturnSingle(Boolean returnSingle)
-
setArrayIndex
@DataBoundSetter public void setArrayIndex(Integer arrayIndex)
-
setDictKey
@DataBoundSetter public void setDictKey(String dictKey)
-
setValue
@DataBoundSetter public void setValue(Object value)
-
setAllowFailure
@DataBoundSetter public void setAllowFailure(boolean allowFailure)
-
setError
@DataBoundSetter public void setError(String error)
-
isDestinationEnvVar
public boolean isDestinationEnvVar()
-
clearError
public void clearError()
-
-