FileDocCategorySizeDatePackage
ByteArrayHolder.javaAPI DocApache Axis 1.41238Sat Apr 22 18:57:28 BST 2006javax.xml.rpc.holders

ByteArrayHolder

public final class ByteArrayHolder extends Object implements Holder
Holder for byte[]s.
version
1.0

Fields Summary
public byte[]
value
The byte[] contained by this holder.
Constructors Summary
public ByteArrayHolder()
Make a new ByteArrayHolder with a null value.

public ByteArrayHolder(byte[] value)
Make a new ByteArrayHolder with value as the value.

param
value the byte[] to hold

        this.value = value;
    
Methods Summary