}
private void setJobState(JobPortResource job, JobStateType.Enum state)
{
XmlBeansResourceProperty resourceProperty = (XmlBeansResourceProperty) job.getResourcePropertySet().get(JobPortPropertyQNames.JOB_STATE);
JobStateType o = null;
if (resourceProperty != null)
{
o = (JobStateType) resourceProperty.get(0);
o.set(state);
}
resourceProperty = (XmlBeansResourceProperty) getResourcePropertySet().get(JobPortPropertyQNames.JOB_STATE);
if (resourceProperty != null)
{
o = (JobStateType) resourceProperty.get(0);
o.set(state);
}
}