![JAR search and dependency download from the Maven repository](/logo.png)
com.github.ltsopensource.jobclient.domain.JobClientAppContext Maven / Gradle / Ivy
package com.github.ltsopensource.jobclient.domain;
import com.github.ltsopensource.core.AppContext;
import com.github.ltsopensource.core.remoting.RemotingClientDelegate;
import com.github.ltsopensource.jobclient.support.JobCompletedHandler;
/**
* @author Robert HG ([email protected]) on 3/30/15.
*/
public class JobClientAppContext extends AppContext {
private RemotingClientDelegate remotingClient;
private JobCompletedHandler jobCompletedHandler;
public JobCompletedHandler getJobCompletedHandler() {
return jobCompletedHandler;
}
public void setJobCompletedHandler(JobCompletedHandler jobCompletedHandler) {
this.jobCompletedHandler = jobCompletedHandler;
}
public RemotingClientDelegate getRemotingClient() {
return remotingClient;
}
public void setRemotingClient(RemotingClientDelegate remotingClient) {
this.remotingClient = remotingClient;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy