Package com.indeed.proctor.common
Class PayloadSpecification
- java.lang.Object
-
- com.indeed.proctor.common.PayloadSpecification
-
public class PayloadSpecification extends java.lang.ObjectModels the payload specification part of a test specification.
-
-
Constructor Summary
Constructors Constructor Description PayloadSpecification()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleangetAllowForce()java.util.Map<java.lang.String,java.lang.String>getSchema()java.lang.StringgetType()java.lang.StringgetValidator()voidsetAllowForce(boolean allowForce)voidsetSchema(java.util.Map<java.lang.String,java.lang.String> schema)voidsetType(java.lang.String type)voidsetValidator(java.lang.String validator)
-
-
-
Method Detail
-
getType
@CheckForNull public java.lang.String getType()
-
setType
public void setType(@Nullable java.lang.String type)
-
getSchema
public java.util.Map<java.lang.String,java.lang.String> getSchema()
-
setSchema
public void setSchema(@Nullable java.util.Map<java.lang.String,java.lang.String> schema)
-
getValidator
@CheckForNull public java.lang.String getValidator()
-
setValidator
public void setValidator(@Nullable java.lang.String validator)
-
getAllowForce
public boolean getAllowForce()
-
setAllowForce
public void setAllowForce(boolean allowForce)
-
-