1 package org.exoplatform.services.xml.querying.impl.xtas; 2 3 import java.io.InputStream ; 4 import java.io.ByteArrayInputStream ; 5 6 10 public class Command 11 { 12 private byte[] buf; 13 14 public Command(byte[] bytes) 15 { 16 this.buf = bytes; 17 } 18 19 public InputStream getAsInputStream() 20 { 21 return new ByteArrayInputStream ( buf ); 22 } 23 24 public String toString() 25 { 26 return new String ( buf ); 27 } 28 29 } 30 | Popular Tags |