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

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