All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.vertx.http.runtime.attribute.SubstituteEmptyWrapper Maven / Gradle / Ivy

The newest version!
package io.quarkus.vertx.http.runtime.attribute;

import io.vertx.ext.web.RoutingContext;

public class SubstituteEmptyWrapper implements ExchangeAttributeWrapper {

    private final String substitute;

    public SubstituteEmptyWrapper(String substitute) {
        this.substitute = substitute;
    }

    @Override
    public ExchangeAttribute wrap(final ExchangeAttribute attribute) {
        return new SubstituteEmptyAttribute(attribute, substitute);
    }

    public static class SubstituteEmptyAttribute implements ExchangeAttribute {
        private final ExchangeAttribute attribute;
        private final String substitute;

        public SubstituteEmptyAttribute(ExchangeAttribute attribute, String substitute) {
            this.attribute = attribute;
            this.substitute = substitute;
        }

        @Override
        public String readAttribute(RoutingContext exchange) {
            String val = attribute.readAttribute(exchange);
            if (val == null || val.isEmpty()) {
                return substitute;
            }
            return val;
        }

        @Override
        public void writeAttribute(RoutingContext exchange, String newValue) throws ReadOnlyAttributeException {
            attribute.writeAttribute(exchange, newValue);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy