org.n52.svalbard.decode.ProcessDocumentDecoder Maven / Gradle / Ivy
/*
* Copyright 2015-2020 52°North Initiative for Geospatial Open Source
* Software GmbH
*
* Licensed 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.n52.svalbard.decode;
import java.util.Collections;
import java.util.Set;
import org.n52.shetland.inspire.ompr.InspireOMPRConstants;
import org.n52.shetland.inspire.ompr.Process;
import org.n52.svalbard.decode.exception.DecodingException;
import org.n52.svalbard.util.CodingHelper;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.google.common.base.Joiner;
import eu.europa.ec.inspire.schemas.ompr.x30.ProcessDocument;
public class ProcessDocumentDecoder extends AbstractProcessDecoder {
private static final Logger LOGGER = LoggerFactory.getLogger(ProcessDocumentDecoder.class);
private static final Set DECODER_KEYS = CodingHelper.decoderKeysForElements(
InspireOMPRConstants.NS_OMPR_30, ProcessDocument.class);
public ProcessDocumentDecoder() {
LOGGER.debug("Encoder for the following keys initialized successfully: {}!",
Joiner.on(", ").join(DECODER_KEYS));
}
@Override
public Set getKeys() {
return Collections.unmodifiableSet(DECODER_KEYS);
}
@Override
public Process decode(ProcessDocument pd) throws DecodingException {
Process process = parseProcessType(pd.getProcess());
process.setXml(pd.xmlText(getXmlOptions()));
return process;
}
}