Class OpenAPIParameter
- java.lang.Object
-
- org.odpi.openmetadata.adapters.connectors.integration.openapis.properties.OpenAPIParameter
-
- All Implemented Interfaces:
Serializable
public class OpenAPIParameter extends Object implements Serializable
OpenAPIParameter describes a single parameter passed on the operation of the API.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OpenAPIParameter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringget$ref()StringgetDescription()StringgetIn()StringgetName()booleanisAllowEmptyValue()booleanisDeprecated()booleanisRequired()voidset$ref(String $ref)voidsetAllowEmptyValue(boolean allowEmptyValue)voidsetDeprecated(boolean deprecated)voidsetDescription(String description)voidsetIn(String in)voidsetName(String name)voidsetRequired(boolean required)StringtoString()
-
-
-
Method Detail
-
getName
public String getName()
-
setName
public void setName(String name)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
getIn
public String getIn()
-
setIn
public void setIn(String in)
-
isRequired
public boolean isRequired()
-
setRequired
public void setRequired(boolean required)
-
isDeprecated
public boolean isDeprecated()
-
setDeprecated
public void setDeprecated(boolean deprecated)
-
isAllowEmptyValue
public boolean isAllowEmptyValue()
-
setAllowEmptyValue
public void setAllowEmptyValue(boolean allowEmptyValue)
-
get$ref
public String get$ref()
-
set$ref
public void set$ref(String $ref)
-
-