
com.malinskiy.sheldon.GatewayBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Reactive preferences abstraction
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