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

org.infinispan.commons.marshall.UTF8StringMarshaller Maven / Gradle / Ivy

There is a newer version: 15.1.0.Dev04
Show newest version
package org.infinispan.commons.marshall;

import static java.nio.charset.StandardCharsets.UTF_8;

import org.infinispan.commons.dataconversion.MediaType;

public final class UTF8StringMarshaller extends StringMarshaller {

   private static final MediaType UTF8_MEDIA_TYPE = MediaType.fromString("text/plain; charset=UTF-8");

   public UTF8StringMarshaller() {
      super(UTF_8);
   }

   @Override
   public MediaType mediaType() {
      return UTF8_MEDIA_TYPE;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy