package org.ourgrid.worker.response; import org.ourgrid.common.internal.IResponseTO; import org.ourgrid.worker.communication.sender.WorkerResponseConstants; public class CreateExecutorResponseTO implements IResponseTO { private final String RESPONSE_TYPE = WorkerResponseConstants.CREATE_EXECUTOR; public String getResponseType() { return this.RESPONSE_TYPE; } }