blob: 9a03611ea6abae6763d59a5d4244535e936d2869 [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.CasProcessorTimeout;
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;
/**
* The Class CasProcessorTimeoutImpl.
*/
public class CasProcessorTimeoutImpl extends MetaDataObject_impl implements CasProcessorTimeout {
/** The Constant serialVersionUID. */
private static final long serialVersionUID = -8276573951395652039L;
/** The default timeout. */
private String defaultTimeout = "-1";
/** The max. */
private String max;
/**
* Instantiates a new cas processor timeout impl.
*/
public CasProcessorTimeoutImpl() {
}
/*
* (non-Javadoc)
*
* @see org.apache.uima.collection.metadata.CasProcessorTimeout#set(int)
*/
@Override
public void set(int aFrequency) {
max = String.valueOf(aFrequency);
}
/*
* (non-Javadoc)
*
* @see org.apache.uima.collection.metadata.CasProcessorTimeout#get()
*/
@Override
public int get() {
return Integer.parseInt(max);
}
/**
* Overridden to read "max" and "default" attributes.
*
* @param aElement the a element
* @param aParser the a parser
* @param aOptions the a options
* @throws InvalidXMLException the invalid XML exception
* @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)
*/
@Override
public void buildFromXMLElement(Element aElement, XMLParser aParser, ParsingOptions aOptions)
throws InvalidXMLException {
setMax(aElement.getAttribute("max"));
setDefaultTimeout(aElement.getAttribute("default"));
}
/**
* Overridden to handle "max" and "default" attributes.
*
* @return the XML attributes
* @see org.apache.uima.resource.metadata.impl.MetaDataObject_impl#getXMLAttributes()
*/
@Override
protected AttributesImpl getXMLAttributes() {
AttributesImpl attrs = super.getXMLAttributes();
attrs.addAttribute("", "max", "max", "CDATA", getMax());
if (getDefaultTimeout() != null && getDefaultTimeout().trim().length() > 0) {
attrs.addAttribute("", "default", "default", "CDATA", getDefaultTimeout());
}
return attrs;
}
/* (non-Javadoc)
* @see org.apache.uima.resource.metadata.impl.MetaDataObject_impl#getXmlizationInfo()
*/
@Override
protected XmlizationInfo getXmlizationInfo() {
return XMLIZATION_INFO;
}
/** The Constant XMLIZATION_INFO. */
static final private XmlizationInfo XMLIZATION_INFO = new XmlizationInfo("timeout",
new PropertyXmlInfo[0]);
/**
* Gets the xmlization info.
*
* @return the XMLization info
*/
public static XmlizationInfo getXMLIZATION_INFO() {
return XMLIZATION_INFO;
}
/**
* PROTECTED METHODS USED BY THE PARSER.
*
* @return the max
*/
/**
* @return the max
*/
public String getMax() {
return max;
}
/**
* Gets the default timeout.
*
* @return the default timeout
*/
public String getDefaultTimeout() {
return defaultTimeout;
}
/**
* Sets the default timeout.
*
* @param string the new default timeout
*/
public void setDefaultTimeout(String string) {
defaultTimeout = string;
}
/**
* Sets the max.
*
* @param string the new max
*/
public void setMax(String string) {
max = string;
}
}