package jenkins.python.expoint;
import com.thoughtworks.xstream.converters.Converter;
import com.thoughtworks.xstream.converters.MarshallingContext;
import com.thoughtworks.xstream.converters.UnmarshallingContext;
import com.thoughtworks.xstream.core.JVM;
import com.thoughtworks.xstream.io.HierarchicalStreamReader;
import com.thoughtworks.xstream.io.HierarchicalStreamWriter;
import com.thoughtworks.xstream.mapper.Mapper;
import hudson.ExtensionPoint;
import hudson.model.AbstractDescribableImpl;
import hudson.model.AbstractProject;
import hudson.model.Job;
import hudson.model.Run;
import hudson.tasks.LogRotator;
import hudson.util.RobustReflectionConverter;
import java.io.IOException;
import jenkins.model.*;
import jenkins.model.BuildDiscarder.*;
import jenkins.model.Jenkins;
import hudson.model.*;
import hudson.model.AbstractDescribableImpl.*;
import jenkins.python.DataConvertor;
import jenkins.python.PythonExecutor;
/**
* This class was automatically generated by the PWM tool on 2014/03/21.
* @see jenkins.model.BuildDiscarder
*/
public abstract class BuildDiscarderPW extends BuildDiscarder {
private transient PythonExecutor pexec;
private void initPython() {
if (pexec == null) {
pexec = new PythonExecutor(this);
String[] jMethods = new String[1];
jMethods[0] = "perform";
String[] pFuncs = new String[1];
pFuncs[0] = "perform";
Class[][] argTypes = new Class[1][];
argTypes[0] = new Class[1];
argTypes[0][0] = Job.class;
pexec.checkAbstrMethods(jMethods, pFuncs, argTypes);
String[] functions = new String[1];
functions[0] = "get_descriptor";
int[] argsCount = new int[1];
argsCount[0] = 0;
pexec.registerFunctions(functions, argsCount);
}
}
@Override
public void perform(Job<?, ?> job) throws IOException, InterruptedException {
initPython();
pexec.execPythonVoid("perform", job);
}
@Override
public BuildDiscarderDescriptor getDescriptor() {
initPython();
if (pexec.isImplemented(0)) {
return (BuildDiscarderDescriptor) pexec.execPython("get_descriptor");
} else {
return super.getDescriptor();
}
}
public BuildDiscarderDescriptor superGetDescriptor() {
return super.getDescriptor();
}
public Object execPython(String function, Object... params) {
initPython();
return pexec.execPython(function, params);
}
public byte execPythonByte(String function, Object... params) {
initPython();
return pexec.execPythonByte(function, params);
}
public short execPythonShort(String function, Object... params) {
initPython();
return pexec.execPythonShort(function, params);
}
public char execPythonChar(String function, Object... params) {
initPython();
return pexec.execPythonChar(function, params);
}
public int execPythonInt(String function, Object... params) {
initPython();
return pexec.execPythonInt(function, params);
}
public long execPythonLong(String function, Object... params) {
initPython();
return pexec.execPythonLong(function, params);
}
public float execPythonFloat(String function, Object... params) {
initPython();
return pexec.execPythonFloat(function, params);
}
public double execPythonDouble(String function, Object... params) {
initPython();
return pexec.execPythonDouble(function, params);
}
public boolean execPythonBool(String function, Object... params) {
initPython();
return pexec.execPythonBool(function, params);
}
public void execPythonVoid(String function, Object... params) {
initPython();
pexec.execPythonVoid(function, params);
}
}