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

com.itelg.spring.xom.marshaller.writer.WriterHolder Maven / Gradle / Ivy

There is a newer version: 1.3.0
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy