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

org.jboss.resteasy.plugins.providers.jaxb.BaseMarshaller Maven / Gradle / Ivy

package org.jboss.resteasy.plugins.providers.jaxb;

import javax.xml.bind.JAXBException;
import javax.xml.bind.Marshaller;
import javax.xml.bind.PropertyException;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.io.UnsupportedEncodingException;

/**
 * @author Bill Burke
 * @version $Revision: 1 $
 */
public abstract class BaseMarshaller implements Marshaller
{
   protected Marshaller marshaller;
   protected String charset = "UTF-8";

   public void marshal(Object o, OutputStream outputStream)
           throws JAXBException
   {
      try
      {
         marshal(o, new OutputStreamWriter(outputStream, charset));
      }
      catch (UnsupportedEncodingException e)
      {
         throw new RuntimeException(e);
      }
   }

   public void setProperty(String s, Object o)
           throws PropertyException
   {
      marshaller.setProperty(s, o);
      if (s.equals(Marshaller.JAXB_ENCODING)) charset = o.toString();
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy