org.apache.oozie.BundleJobInfo Maven / Gradle / Ivy
/**
* Copyright (c) 2010 Yahoo! Inc. All rights reserved.
* 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. See accompanying LICENSE file.
*/
package org.apache.oozie;
import java.util.List;
public class BundleJobInfo {
private int start;
private int len;
private int total;
private List jobs;
/**
* Create a bundle info bean.
*
* @param bundle jobs being returned.
* @param start bundle jobs offset.
* @param len number of bundle jobs.
* @param total total bundle jobs.
*/
public BundleJobInfo(List jobs, int start, int len, int total) {
this.start = start;
this.len = len;
this.total = total;
this.jobs = jobs;
}
/**
* Return the bundle jobs being returned.
*
* @return the bundle jobs being returned.
*/
public List getBundleJobs() {
return jobs;
}
/**
* Return the offset of the bundles being returned.
*
* For pagination purposes.
*
* @return the offset of the bundle jobs being returned.
*/
public int getStart() {
return start;
}
/**
* Return the number of the bundle being returned.
*
* For pagination purposes.
*
* @return the number of the bundle jobs being returned.
*/
public int getLen() {
return len;
}
/**
* Return the total number of bundles.
*
* For pagination purposes.
*
* @return the total number of bundle jobs.
*/
public int getTotal() {
return total;
}
}