Class BaseServiceInputParameter
java.lang.Object
com.flowable.serviceregistry.engine.impl.repository.BaseServiceParameter
com.flowable.serviceregistry.engine.impl.repository.BaseServiceInputParameter
- All Implemented Interfaces:
ServiceInputParameter
,ServiceParameter
public class BaseServiceInputParameter extends BaseServiceParameter implements ServiceInputParameter
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.String
bodyLocation
protected java.lang.Object
defaultValue
protected boolean
excludedFromBody
protected boolean
required
Fields inherited from class com.flowable.serviceregistry.engine.impl.repository.BaseServiceParameter
description, displayName, mappingName, name, type
-
Constructor Summary
Constructors Constructor Description BaseServiceInputParameter()
-
Method Summary
Modifier and Type Method Description java.lang.String
getBodyLocation()
java.lang.Object
getDefaultValue()
boolean
isExcludedFromBody()
boolean
isRequired()
void
setBodyLocation(java.lang.String bodyLocation)
void
setDefaultValue(java.lang.Object defaultValue)
void
setExcludedFromBody(boolean excludedFromBody)
void
setRequired(boolean required)
Methods inherited from class com.flowable.serviceregistry.engine.impl.repository.BaseServiceParameter
getDescription, getDisplayName, getMappingName, getName, getType, setDescription, setDisplayName, setMappingName, setName, setType
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.flowable.serviceregistry.api.repository.ServiceParameter
getDescription, getDisplayName, getMappingName, getName, getType
-
Field Details
-
required
protected boolean required -
excludedFromBody
protected boolean excludedFromBody -
bodyLocation
protected java.lang.String bodyLocation -
defaultValue
protected java.lang.Object defaultValue
-
-
Constructor Details
-
BaseServiceInputParameter
public BaseServiceInputParameter()
-
-
Method Details
-
isRequired
public boolean isRequired()- Specified by:
isRequired
in interfaceServiceInputParameter
-
setRequired
public void setRequired(boolean required) -
isExcludedFromBody
public boolean isExcludedFromBody()- Specified by:
isExcludedFromBody
in interfaceServiceInputParameter
-
setExcludedFromBody
public void setExcludedFromBody(boolean excludedFromBody) -
getBodyLocation
public java.lang.String getBodyLocation()- Specified by:
getBodyLocation
in interfaceServiceInputParameter
-
setBodyLocation
public void setBodyLocation(java.lang.String bodyLocation) -
getDefaultValue
public java.lang.Object getDefaultValue()- Specified by:
getDefaultValue
in interfaceServiceInputParameter
-
setDefaultValue
public void setDefaultValue(java.lang.Object defaultValue)
-