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 String
bodyLocation
protected 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
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getBodyLocation()
Object
getDefaultValue()
boolean
isExcludedFromBody()
boolean
isRequired()
void
setBodyLocation(String bodyLocation)
void
setDefaultValue(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
-
-
-
-
Method Detail
-
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 String getBodyLocation()
- Specified by:
getBodyLocation
in interfaceServiceInputParameter
-
setBodyLocation
public void setBodyLocation(String bodyLocation)
-
getDefaultValue
public Object getDefaultValue()
- Specified by:
getDefaultValue
in interfaceServiceInputParameter
-
setDefaultValue
public void setDefaultValue(Object defaultValue)
-
-