blob: cdfe9b3c38ba3e514ddbcf728e9f26746bbd2938 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.batchee.tools.maven;
import org.apache.batchee.jaxrs.client.impl.JobInstanceImpl;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import javax.batch.runtime.JobExecution;
import java.util.List;
/**
* Print job instance executions.
*/
@Mojo(name = "executions")
public class JobExecutionsMojo extends JobExecutionMojoBase {
/**
* the job name to use to query job executions
*/
@Parameter(required = true, property = "batchee.job")
protected String jobName;
/**
* the instanceId to use to query job executions
*/
@Parameter(required = true, property = "batchee.instance")
protected long instanceId;
@Override
public void execute() throws MojoExecutionException, MojoFailureException {
final List<JobExecution> executions = getOrCreateOperator().getJobExecutions(new JobInstanceImpl(jobName, instanceId));
getLog().info("Job executions for job instance #" + instanceId + " (" + jobName + "):");
for (final JobExecution exec : executions) {
getLog().info(" - " + toStr(exec));
}
}
}