Package com.cisco.oss.foundation.configuration.xml

Source Code of com.cisco.oss.foundation.configuration.xml.ConfigurationResponseMessage

/*
* Copyright 2014 Cisco Systems, Inc.
*
*  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 com.cisco.oss.foundation.configuration.xml;

import com.cisco.oss.foundation.configuration.xml.jaxb.ConfigurationResponse;

/**
* This class is responsible for marshalling and unmarshalling ConfigurationResponse messages.
* @author dventura
*
*/
public class ConfigurationResponseMessage {

    private String xml = null;
    private ConfigurationResponse jaxb = null;
    private XmlParser parser = null;

    public ConfigurationResponseMessage(String xml) throws XmlException {
        parser = new XmlParser();
        jaxb = unmarshall(xml);
        this.xml = xml;
    }
    public ConfigurationResponseMessage(ConfigurationResponse jaxb) throws XmlException {
        parser = new XmlParser();
        xml = marshall(jaxb);
        this.jaxb = jaxb;
    }

    public String toXml() {
        return(xml);
    }

    public ConfigurationResponse jaxb() {
        return(jaxb);
    }

    protected String marshall(ConfigurationResponse jaxb) throws XmlException {
        return(parser.marshall(jaxb));
    }

    protected ConfigurationResponse unmarshall(String xml) throws XmlException {
        ConfigurationResponse jaxb = null;
        try {
            jaxb = (ConfigurationResponse)parser.unmarshall(xml);
        } catch(ClassCastException e) {
            throw new XmlException("The given message was not a ConfigurationResponse Message - ClassCastException: " + e.getMessage(), e);
        }
        return(jaxb);
    }
}
TOP

Related Classes of com.cisco.oss.foundation.configuration.xml.ConfigurationResponseMessage

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.