use of org.n52.shetland.iso.gco.AbstractRole in project arctic-sea by 52North.
the class Iso19139GcoEncoder method encode.
@Override
public XmlObject encode(Object element, EncodingContext additionalValues) throws EncodingException, UnsupportedEncoderInputException {
XmlObject encodedObject = null;
if (element instanceof AbstractRole) {
encodedObject = encodeRole((AbstractRole) element);
} else {
throw new UnsupportedEncoderInputException(this, element);
}
XmlHelper.validateDocument(encodedObject, EncodingException::new);
return encodedObject;
}
Aggregations