1 6 package org.jboss.test.webservice.jbws718; 7 8 9 public class SetResourceContents { 10 protected java.lang.String resource; 11 protected byte[] contents; 12 protected java.lang.String mimeType; 13 14 public SetResourceContents() { 15 } 16 17 public SetResourceContents(java.lang.String resource, byte[] contents, java.lang.String mimeType) { 18 this.resource = resource; 19 this.contents = contents; 20 this.mimeType = mimeType; 21 } 22 23 public java.lang.String getResource() { 24 return resource; 25 } 26 27 public void setResource(java.lang.String resource) { 28 this.resource = resource; 29 } 30 31 public byte[] getContents() { 32 return contents; 33 } 34 35 public void setContents(byte[] contents) { 36 this.contents = contents; 37 } 38 39 public java.lang.String getMimeType() { 40 return mimeType; 41 } 42 43 public void setMimeType(java.lang.String mimeType) { 44 this.mimeType = mimeType; 45 } 46 } 47 | Popular Tags |