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

javax.xml.rpc.holders.ByteArrayHolder Maven / Gradle / Ivy

There is a newer version: 2.0.0.Final
Show newest version
package javax.xml.rpc.holders;

/** A holder for byte[]s.
 * 
 * @author [email protected]
 */
public final class ByteArrayHolder implements Holder
{
   public byte[] value;

   public ByteArrayHolder()
   {

   }

   public ByteArrayHolder(byte[] value)
   {
      this.value = value;
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy