All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ehcache.xml.model.Adapter4 Maven / Gradle / Ivy

The newest version!

package org.ehcache.xml.model;

import javax.xml.bind.annotation.adapters.XmlAdapter;

public class Adapter4
    extends XmlAdapter
{


    public String unmarshal(String value) {
        return (org.ehcache.xml.ParsingUtil.parseStringWithProperties(value));
    }

    public String marshal(String value) {
        if (value == null) {
            return null;
        }
        return value.toString();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy