io.quarkus.vertx.http.runtime.attribute.RequestProtocolAttribute Maven / Gradle / Ivy
The newest version!
package io.quarkus.vertx.http.runtime.attribute;
import io.vertx.ext.web.RoutingContext;
/**
* The request getProtocol
*
*/
public class RequestProtocolAttribute implements ExchangeAttribute {
public static final String REQUEST_PROTOCOL_SHORT = "%H";
public static final String REQUEST_PROTOCOL = "%{PROTOCOL}";
public static final ExchangeAttribute INSTANCE = new RequestProtocolAttribute();
private RequestProtocolAttribute() {
}
@Override
public String readAttribute(final RoutingContext exchange) {
return exchange.request().version().name();
}
@Override
public void writeAttribute(final RoutingContext exchange, final String newValue) throws ReadOnlyAttributeException {
throw new ReadOnlyAttributeException("Request getProtocol", newValue);
}
public static final class Builder implements ExchangeAttributeBuilder {
@Override
public String name() {
return "Request getProtocol";
}
@Override
public ExchangeAttribute build(final String token) {
if (token.equals(REQUEST_PROTOCOL) || token.equals(REQUEST_PROTOCOL_SHORT)) {
return RequestProtocolAttribute.INSTANCE;
}
return null;
}
@Override
public int priority() {
return 0;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy