blob: a26724001c7f539597adb1e132a1a8d0a3e66e78 [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.uima.collection.impl.metadata.cpe;
import org.apache.uima.collection.metadata.CasProcessorMaxRestarts;
import org.apache.uima.resource.metadata.impl.MetaDataObject_impl;
import org.apache.uima.resource.metadata.impl.PropertyXmlInfo;
import org.apache.uima.resource.metadata.impl.XmlizationInfo;
import org.apache.uima.util.InvalidXMLException;
import org.apache.uima.util.XMLParser;
import org.apache.uima.util.XMLParser.ParsingOptions;
import org.w3c.dom.Element;
import org.xml.sax.helpers.AttributesImpl;
public class CasProcessorMaxRestartsImpl extends MetaDataObject_impl implements
CasProcessorMaxRestarts {
private static final long serialVersionUID = 2863741219504239020L;
private String value = "1";
private String action;
private int waitTimeBetweenRetries;
public CasProcessorMaxRestartsImpl() {
}
/*
* (non-Javadoc)
*
* @see org.apache.uima.collection.metadata.CasProcessorMaxRestarts#setRestartCount(int)
*/
public void setRestartCount(int aRestartCount) {
value = String.valueOf(aRestartCount);
}
/*
* (non-Javadoc)
*
* @see org.apache.uima.collection.metadata.CasProcessorMaxRestarts#getRestartCount()
*/
public int getRestartCount() {
return Integer.parseInt(value);
}
/*
* (non-Javadoc)
*
* @see org.apache.uima.collection.metadata.CasProcessorMaxRestarts#setAction(java.lang.String)
*/
public void setAction(String aAction) {
action = aAction;
}
/*
* (non-Javadoc)
*
* @see org.apache.uima.collection.metadata.CasProcessorMaxRestarts#getAction()
*/
public String getAction() {
return action;
}
/**
* @return
*/
public String getValue() {
return value;
}
/**
* @param string
*/
public void setValue(String string) {
value = string;
}
/**
* Overridden to read "name" and "value" attributes.
*
* @see org.apache.uima.resource.metadata.impl.MetaDataObject_impl#buildFromXMLElement(org.w3c.dom.Element,
* org.apache.uima.util.XMLParser, org.apache.uima.util.XMLParser.ParsingOptions)
*/
public void buildFromXMLElement(Element aElement, XMLParser aParser, ParsingOptions aOptions)
throws InvalidXMLException {
setAction(aElement.getAttribute("action"));
setValue(aElement.getAttribute("value"));
String waitTime = aElement.getAttribute("waitTimeBetweenRetries");
if (waitTime != null && waitTime.trim().length() > 0) {
try {
setWaitTimeBetweenRetries(Integer.parseInt(waitTime));
} catch (NumberFormatException e) {
// ignore
}
}
}
/**
* Overridden to handle "name" and "value" attributes.
*
* @see org.apache.uima.resource.metadata.impl.MetaDataObject_impl#getXMLAttributes()
*/
protected AttributesImpl getXMLAttributes() {
AttributesImpl attrs = super.getXMLAttributes();
attrs.addAttribute("", "action", "action", "CDATA", String.valueOf(getAction()));
attrs.addAttribute("", "value", "value", "CDATA", getValue());
if (getWaitTimeBetweenRetries() != 0) {
attrs.addAttribute("", "waitTimeBetweenRetries", "waitTimeBetweenRetries", "CDATA", String
.valueOf(getWaitTimeBetweenRetries()));
}
return attrs;
}
protected XmlizationInfo getXmlizationInfo() {
return XMLIZATION_INFO;
}
static final private XmlizationInfo XMLIZATION_INFO = new XmlizationInfo(
"maxConsecutiveRestarts", new PropertyXmlInfo[0]);
/**
* @return
*/
public int getWaitTimeBetweenRetries() {
return waitTimeBetweenRetries;
}
/**
* @param i
*/
public void setWaitTimeBetweenRetries(int i) {
waitTimeBetweenRetries = i;
}
}