Interface APIResponses
- All Superinterfaces:
Constructible
,Extensible<APIResponses>
,Map<String,
APIResponse>
public interface APIResponses
extends Constructible, Extensible<APIResponses>, Map<String,APIResponse>
This interface represents the container for the expected responses of an operation. The container maps a HTTP response code to the expected
response.
- See Also:
-
Nested Class Summary
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptiondefault APIResponses
addApiResponse
(String name, APIResponse apiResponse) Deprecated.addAPIResponse
(String name, APIResponse apiResponse) Adds an APIResponse in the format of the name as a key and the item as the value to APIResponses mapboolean
containsKey
(Object key) Deprecated.since 1.1default APIResponses
defaultValue
(APIResponse defaultValue) Sets the default documentation of responses for this instance of ApiResponses and return this instance of ApiResponses.Deprecated.since 1.1default APIResponse
getAPIResponse
(String name) Returns a APIResponse for a given name.Returns a copy map (potentially immutable) of the APIResponses.default APIResponse
Deprecated.since 1.1, use @linkgetDefaultValue()
insteadReturns the default documentation of responses other than the ones declared for specific HTTP response codes in this instance of ApiResponses.default boolean
hasAPIResponse
(String name) Check whether a APIResponse is present in the map.put
(String key, APIResponse value) Deprecated.since 1.1void
putAll
(Map<? extends String, ? extends APIResponse> m) Deprecated.since 1.1Deprecated.since 1.1void
removeAPIResponse
(String name) Removes the given APIResponse to this APIResponses.void
setAPIResponses
(Map<String, APIResponse> items) Set the APIResponses map to this APIResponsesvoid
setDefaultValue
(APIResponse defaultValue) Sets the default documentation of responses for this instance of ApiResponses.Methods inherited from interface org.eclipse.microprofile.openapi.models.Extensible
addExtension, extensions, getExtensions, removeExtension, setExtensions
Methods inherited from interface java.util.Map
clear, compute, computeIfAbsent, computeIfPresent, containsValue, entrySet, equals, forEach, getOrDefault, hashCode, isEmpty, keySet, merge, putIfAbsent, remove, replace, replace, replaceAll, size, values
-
Field Details
-
DEFAULT
- See Also:
-
-
Method Details
-
addApiResponse
Deprecated.since 1.1, useaddAPIResponse(String, APIResponse)
insteadAdds an APIResponse in the format of the name as a key and the item as the value to APIResponses map- Parameters:
name
- the name of APIResponse (http status code eventually with wildcard or "default")apiResponse
- the APIResponse object to be added to APIResponses map. null values will be rejected (implementation will throw an exception) or ignored.- Returns:
- APIResponses map with the added ApiResponse instance
-
addAPIResponse
Adds an APIResponse in the format of the name as a key and the item as the value to APIResponses map- Parameters:
name
- the name of APIResponse (http status code eventually with wildcard or "default")apiResponse
- the APIResponse object to be added to APIResponses map. null values will be rejected (implementation will throw an exception) or ignored.- Returns:
- APIResponses map with the added ApiResponse instance
-
removeAPIResponse
Removes the given APIResponse to this APIResponses.- Parameters:
name
- the name of APIResponse that will be removed (http status code eventually with wildcard or "default")
-
getAPIResponses
Map<String,APIResponse> getAPIResponses()Returns a copy map (potentially immutable) of the APIResponses.- Returns:
- all responses
-
setAPIResponses
Set the APIResponses map to this APIResponses- Parameters:
items
- a map containing all responses. Keys are http statuses code eventually with wildcard or "default".
-
hasAPIResponse
Check whether a APIResponse is present in the map. This is a convenience method forgetAPIResponses().containsKey(name)
- Parameters:
name
- the name of APIResponse (http status code eventually with wildcard or "default")- Returns:
- a boolean to indicate if the APIResponse is present or not.
-
getAPIResponse
Returns a APIResponse for a given name. This is a convenience method forgetAPIResponses().get(name)
- Parameters:
name
- the name of APIResponse (http status code eventually with wildcard or "default")- Returns:
- the corresponding APIResponse or null.
-
get
Deprecated.since 1.1In the next version,APIResponses
will no longer extendsMap
, this method will no longer be present. UsegetAPIResponse(String)
instead.- Specified by:
get
in interfaceMap<String,
APIResponse>
-
containsKey
Deprecated.since 1.1In the next version,APIResponses
will no longer extendsMap
, this method will no longer be present. UsehasAPIResponse(String)
instead.- Specified by:
containsKey
in interfaceMap<String,
APIResponse>
-
put
Deprecated.since 1.1In the next version,APIResponses
will no longer extendsMap
, this method will no longer be present. UseaddAPIResponse(String, APIResponse)
instead.- Specified by:
put
in interfaceMap<String,
APIResponse>
-
putAll
Deprecated.since 1.1In the next version,APIResponses
will no longer extendsMap
, this method will no longer be present. UsesetAPIResponses(Map)
instead.- Specified by:
putAll
in interfaceMap<String,
APIResponse>
-
remove
Deprecated.since 1.1In the next version,APIResponses
will no longer extendsMap
, this method will no longer be present. UseremoveAPIResponse(String)
instead.- Specified by:
remove
in interfaceMap<String,
APIResponse>
-
getDefault
Deprecated.since 1.1, use @linkgetDefaultValue()
insteadReturns the default documentation of responses other than the ones declared for specific HTTP response codes in this instance of ApiResponses.Convenience method that is the same as calling
get(Object)
on the map with "default" as value for the key.- Returns:
- the default documentation of responses
-
getDefaultValue
APIResponse getDefaultValue()Returns the default documentation of responses other than the ones declared for specific HTTP response codes in this instance of ApiResponses.Convenience method that is the same as calling
get(Object)
on the map with "default" as value for the key.- Returns:
- the default documentation of responses
-
setDefaultValue
Sets the default documentation of responses for this instance of ApiResponses. This will cover all the undeclared responses.Convenience method that is the same as calling
addAPIResponse(String, APIResponse)
with "default" as value for the key.- Parameters:
defaultValue
- the default documentation of responses
-
defaultValue
Sets the default documentation of responses for this instance of ApiResponses and return this instance of ApiResponses. This will cover all the undeclared responses.Convenience method that is the same as calling
addAPIResponse(String, APIResponse)
with "default" as value for the key.- Parameters:
defaultValue
- the default documentation of responses- Returns:
- this ApiResponses instance
-
addAPIResponse(String, APIResponse)
instead