Class ValidatableResponse
- java.lang.Object
-
- io.vertx.reactivex.openapi.validation.ValidatableResponse
-
public class ValidatableResponse extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<ValidatableResponse>
__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description ValidatableResponse(ValidatableResponse delegate)
ValidatableResponse(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ValidatableResponse
create(int statusCode)
Creates a newValidatableResponse
object based on the passed parameters.static ValidatableResponse
create(int statusCode, Buffer body, String contentType)
Creates a newValidatableResponse
object based on the passed parameters.static ValidatableResponse
create(int statusCode, Map<String,String> headers)
Creates a newValidatableResponse
object based on the passed parameters.static ValidatableResponse
create(int statusCode, Map<String,String> headers, Buffer body, String contentType)
Creates a newValidatableResponse
object based on the passed parameters.boolean
equals(Object o)
ResponseParameter
getBody()
String
getContentType()
ValidatableResponse
getDelegate()
Map<String,ResponseParameter>
getHeaders()
int
getStatusCode()
int
hashCode()
static ValidatableResponse
newInstance(ValidatableResponse arg)
String
toString()
-
-
-
Field Detail
-
__TYPE_ARG
public static final io.vertx.lang.rx.TypeArg<ValidatableResponse> __TYPE_ARG
-
-
Constructor Detail
-
ValidatableResponse
public ValidatableResponse(ValidatableResponse delegate)
-
ValidatableResponse
public ValidatableResponse(Object delegate)
-
-
Method Detail
-
getDelegate
public ValidatableResponse getDelegate()
-
create
public static ValidatableResponse create(int statusCode)
Creates a newValidatableResponse
object based on the passed parameters.- Parameters:
statusCode
- The related status code- Returns:
- a
ValidatableResponse
object
-
create
public static ValidatableResponse create(int statusCode, Map<String,String> headers)
Creates a newValidatableResponse
object based on the passed parameters.- Parameters:
statusCode
- The related status codeheaders
- The related headers- Returns:
- a
ValidatableResponse
object
-
create
public static ValidatableResponse create(int statusCode, Buffer body, String contentType)
Creates a newValidatableResponse
object based on the passed parameters.- Parameters:
statusCode
- The related status codebody
- The related bodycontentType
- The related content type- Returns:
- a
ValidatableResponse
object
-
create
public static ValidatableResponse create(int statusCode, Map<String,String> headers, Buffer body, String contentType)
Creates a newValidatableResponse
object based on the passed parameters.- Parameters:
statusCode
- The related status codeheaders
- The related headersbody
- The related bodycontentType
- The related content type- Returns:
- a
ValidatableResponse
object
-
getHeaders
public Map<String,ResponseParameter> getHeaders()
- Returns:
- the header parameters.
-
getBody
public ResponseParameter getBody()
- Returns:
- the body.
-
getContentType
public String getContentType()
-
getStatusCode
public int getStatusCode()
-
newInstance
public static ValidatableResponse newInstance(ValidatableResponse arg)
-
-