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

prompto.debug.response.GetWorkerStatusDebugResponse Maven / Gradle / Ivy

The newest version!
package prompto.debug.response;

import java.util.Objects;

import prompto.debug.WorkerStatus;

public class GetWorkerStatusDebugResponse implements IDebugResponse {

	WorkerStatus workerStatus;
	
	public GetWorkerStatusDebugResponse() {
	}

	public GetWorkerStatusDebugResponse(WorkerStatus status) {
		this.workerStatus = status;
	}
	
	public WorkerStatus getWorkerStatus() {
		return workerStatus;
	}
	
	public void setWorkerStatus(WorkerStatus status) {
		this.workerStatus = status;
	}
	
	@Override
	public int hashCode() {
		return Objects.hash(workerStatus);
	}

	@Override
	public boolean equals(Object other) {
		return this == other || (other instanceof GetWorkerStatusDebugResponse && ((GetWorkerStatusDebugResponse)other).equals(this));
	}
	
	public boolean equals(GetWorkerStatusDebugResponse other) {
		return workerStatus == other.workerStatus;
	}


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy