Class ResponseCodeAttribute
- java.lang.Object
-
- io.quarkus.vertx.http.runtime.attribute.ResponseCodeAttribute
-
- All Implemented Interfaces:
ExchangeAttribute
public class ResponseCodeAttribute extends Object implements ExchangeAttribute
The request status code
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ResponseCodeAttribute.Builder
-
Field Summary
Fields Modifier and Type Field Description static ExchangeAttribute
INSTANCE
static String
RESPONSE_CODE
static String
RESPONSE_CODE_SHORT
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
readAttribute(io.vertx.ext.web.RoutingContext exchange)
Resolve the attribute from the HTTP server exchange.void
writeAttribute(io.vertx.ext.web.RoutingContext exchange, String newValue)
Sets a new value for the attribute.
-
-
-
Field Detail
-
RESPONSE_CODE_SHORT
public static final String RESPONSE_CODE_SHORT
- See Also:
- Constant Field Values
-
RESPONSE_CODE
public static final String RESPONSE_CODE
- See Also:
- Constant Field Values
-
INSTANCE
public static final ExchangeAttribute INSTANCE
-
-
Method Detail
-
readAttribute
public String readAttribute(io.vertx.ext.web.RoutingContext exchange)
Description copied from interface:ExchangeAttribute
Resolve the attribute from the HTTP server exchange. This may return null if the attribute is not present.- Specified by:
readAttribute
in interfaceExchangeAttribute
- Parameters:
exchange
- The exchange- Returns:
- The attribute
-
writeAttribute
public void writeAttribute(io.vertx.ext.web.RoutingContext exchange, String newValue) throws ReadOnlyAttributeException
Description copied from interface:ExchangeAttribute
Sets a new value for the attribute. Not all attributes are writable.- Specified by:
writeAttribute
in interfaceExchangeAttribute
- Parameters:
exchange
- The exchangenewValue
- The new value for the attribute- Throws:
ReadOnlyAttributeException
- when attribute cannot be written
-
-