org.ehcache.xml.model.Adapter4 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ehcache Show documentation
Show all versions of ehcache Show documentation
Ehcache single jar, containing all modules
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