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

com.plivo.api.xml.JaxbCharacterEscapeHandler Maven / Gradle / Ivy

Go to download

A Java SDK to make voice calls & send SMS using Plivo and to generate Plivo XML

There is a newer version: 5.46.0
Show newest version
package com.plivo.api.xml;

import java.io.IOException;
import java.io.Writer;

import com.sun.xml.bind.marshaller.CharacterEscapeHandler;

public class JaxbCharacterEscapeHandler implements CharacterEscapeHandler {

  public void escape(char[] buf, int start, int len, boolean isAttValue,
                     Writer out) throws IOException {

    for (int i = start; i < start + len; i++) {
      char ch = buf[i];
      out.write(ch);
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy