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

com.wichell.framework.text.adapter.ClassXmlAdapter Maven / Gradle / Ivy

The newest version!
package com.wichell.framework.text.adapter;

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

@SuppressWarnings("rawtypes")
public class ClassXmlAdapter extends XmlAdapter {

	@Override
	public Class unmarshal(String v) throws Exception {
		return Class.forName(v);
	}

	@Override
	public String marshal(Class v) throws Exception {
		return v.getName();
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy