
io.bdeploy.bhive.op.remote.RemoteOperation Maven / Gradle / Ivy
package io.bdeploy.bhive.op.remote;
import io.bdeploy.bhive.BHive;
import io.bdeploy.common.security.RemoteService;
@SuppressWarnings("unchecked")
public abstract class RemoteOperation> extends BHive.Operation {
private RemoteService remote;
public X setRemote(RemoteService def) {
this.remote = def;
return (X) this;
}
protected RemoteService getRemote() {
return remote;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy