1 package org.apache.ws.jaxme.pm.ino;2 3 import java.io.UnsupportedEncodingException ;4 5 6 /** This interface allows to choose between JDK 1.37 * and JDK 1.4 dependent classes.8 */9 public interface IURLEncoder {10 /** Encodes the string <code>pValue</code>.11 */12 public String encode(String pValue) throws UnsupportedEncodingException ;13 }14