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

com.malinskiy.sheldon.GatewayBuilder Maven / Gradle / Ivy

The newest version!
package com.malinskiy.sheldon;

import javax.annotation.Nonnull;

public abstract class GatewayBuilder {

    @Nonnull protected String namespace;

    public AllSet namespace(@Nonnull String namespace) {
        assert namespace != null;

        this.namespace = namespace;
        return prepare();
    }

    protected abstract AllSet prepare();

    public abstract class AllSet {
        public abstract IGateway build();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy