com.itelg.spring.xom.marshaller.writer.WriterHolder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-xom-marshaller Show documentation
Show all versions of spring-xom-marshaller Show documentation
Spring XML Marshalling with XOM
package com.itelg.spring.xom.marshaller.writer;
public class WriterHolder
{
private Writer> writer;
private Class> returnType;
public Writer> getWriter()
{
return writer;
}
public void setWriter(Writer> writer)
{
this.writer = writer;
}
public Class> getReturnType()
{
return returnType;
}
public void setReturnType(Class> returnType)
{
this.returnType = returnType;
}
}