com.cisco.oss.foundation.configuration.xml.jaxb.Adapter1 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of configuration-api Show documentation
Show all versions of configuration-api Show documentation
This project is the api library for configuration in the cisco vss foundation runtime
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2014.08.11 at 06:03:39 AM EDT
//
package com.cisco.oss.foundation.configuration.xml.jaxb;
import javax.xml.bind.annotation.adapters.XmlAdapter;
public class Adapter1
extends XmlAdapter
{
public Integer unmarshal(String value) {
return (com.cisco.oss.foundation.configuration.xml.jaxb.adapters.DataConverter.parseInteger(value));
}
public String marshal(Integer value) {
return (com.cisco.oss.foundation.configuration.xml.jaxb.adapters.DataConverter.printInteger(value));
}
}