uimaj-ep-runtime-deployeditor/src/main/java/org/apache/uima/aae/deployment/impl/AsyncPrimitiveErrorConfiguration_Impl.java [208:233]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected void setAttributesForCollectionProcessCompleteErrors (Element aElement) throws InvalidXMLException {
      NamedNodeMap map = aElement.getAttributes();
      if (map != null) {
        for (int i=0; i<map.getLength(); ++i) {
          Node item = map.item(i);
          String name = item.getNodeName();
          String val = item.getNodeValue();
          if (val == null) {
            val = "";
          } else {
            val = val.trim();
          }
          if (TAG_ATTR_TIMEOUT.equalsIgnoreCase(name)) {
            if (val.length() > 0) {
              collectionProcessCompleteErrors.setTimeout(Integer.parseInt(val));
            }
          } else if (TAG_ATTR_ADDITIONAL_ERROR_ACTION.equalsIgnoreCase(name)) {
            if (val.length() > 0) {
              collectionProcessCompleteErrors.setAdditionalErrorAction(val);
            }
          } else {
            throw new InvalidXMLException(InvalidXMLException.UNKNOWN_ELEMENT, new Object[]{name});
          }
        }
      }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



uimaj-ep-runtime-deployeditor/src/main/java/org/apache/uima/aae/deployment/impl/AsyncAggregateErrorConfiguration_Impl.java [261:286]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected void setAttributesForCollectionProcessCompleteErrors (Element aElement) throws InvalidXMLException {
      NamedNodeMap map = aElement.getAttributes();
      if (map != null) {
        for (int i=0; i<map.getLength(); ++i) {
          Node item = map.item(i);
          String name = item.getNodeName();
          String val = item.getNodeValue();
          if (val == null) {
            val = "";
          } else {
            val = val.trim();
          }
          if (TAG_ATTR_TIMEOUT.equalsIgnoreCase(name)) {
            if (val.length() > 0) {
              collectionProcessCompleteErrors.setTimeout(Integer.parseInt(val));
            }
          } else if (TAG_ATTR_ADDITIONAL_ERROR_ACTION.equalsIgnoreCase(name)) {
            if (val.length() > 0) {
              collectionProcessCompleteErrors.setAdditionalErrorAction(val);
            }
          } else {
            throw new InvalidXMLException(InvalidXMLException.UNKNOWN_ELEMENT, new Object[]{name});
          }
        }
      }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



