Class NullAttribute
- java.lang.Object
-
- io.quarkus.vertx.http.runtime.attribute.NullAttribute
-
- All Implemented Interfaces:
ExchangeAttribute
public class NullAttribute extends Object implements ExchangeAttribute
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
NullAttribute.Builder
-
Field Summary
Fields Modifier and Type Field Description static NullAttribute
INSTANCE
static String
NAME
-
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
-
NAME
public static final String NAME
- See Also:
- Constant Field Values
-
INSTANCE
public static final NullAttribute 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
-
-