| OctetStream.java |
/*
* Copyright (C) The Apache Software Foundation. All rights reserved.
*
* This software is published under the terms of the Apache Software License
* version 1.1, a copy of which has been included with this distribution in
* the docs/licenses/apache-1.1.txt file.
*/
package org.jboss.axis.attachments;
public class OctetStream
{
private byte[] bytes = null;
public OctetStream()
{
}
public OctetStream(byte[] bytes)
{
this.bytes = bytes;
}
public byte[] getBytes()
{
return this.bytes;
}
public void setBytes(byte[] bytes)
{
this.bytes = bytes;
}
}
| OctetStream.java |