
com.eventstore.dbclient.OptionsWithResolveLinkTosBase Maven / Gradle / Ivy
package com.eventstore.dbclient;
class OptionsWithResolveLinkTosBase extends OptionsBase {
private boolean resolveLinkTos;
protected OptionsWithResolveLinkTosBase() {
this.resolveLinkTos = false;
}
public boolean shouldResolveLinkTos() {
return this.resolveLinkTos;
}
public T resolveLinkTos(boolean value) {
this.resolveLinkTos = value;
return (T)this;
}
public T resolveLinkTos() {
return this.resolveLinkTos(true);
}
public T notResolveLinkTos() {
return this.resolveLinkTos(false);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy