
com.hpe.caf.worker.jobtracking.ProxiedTaskInfo Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2016-2024 Open Text.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.hpe.caf.worker.jobtracking;
/**
* Holds details of a task being proxied by the Job Tracking Worker
*/
public class ProxiedTaskInfo {
/**
* The classifier indicating the type of task message being proxied, i.e. the type of worker matching the proxied task.
*/
private String proxiedTaskClassifier;
/**
* The data payload of the task message being proxied.
*/
private byte[] proxiedTaskData;
public ProxiedTaskInfo() {
}
public ProxiedTaskInfo(String proxiedTaskClassifier, byte[] proxiedTaskData) {
this.proxiedTaskClassifier = proxiedTaskClassifier;
this.proxiedTaskData = proxiedTaskData;
}
public String getProxiedTaskClassifier() {
return proxiedTaskClassifier;
}
public void setProxiedTaskClassifier(String proxiedTaskClassifier) {
this.proxiedTaskClassifier = proxiedTaskClassifier;
}
public byte[] getProxiedTaskData() {
return proxiedTaskData;
}
public void setProxiedTaskData(byte[] proxiedTaskData) {
this.proxiedTaskData = proxiedTaskData;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy