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

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

/*
 * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 */

package javax.xml.rpc.holders;


public final class ByteArrayHolder implements Holder {
    public byte[] value;
    
    public ByteArrayHolder() {
    }
    
    public ByteArrayHolder(byte[] mybyteArray) {
        this.value = mybyteArray;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy