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