1 package org.jboss.xb.binding.sunday.xop; 2 3 7 public class XOPObject { 8 9 private Object content; 10 private String contentType; 11 12 public XOPObject(Object content) { 13 this.content = content; 14 } 15 16 public Object getContent() { 17 return content; 18 } 19 20 public String getContentType() { 21 return contentType; 22 } 23 24 public void setContentType(String contentType) { 25 this.contentType = contentType; 26 } 27 } 28 | Popular Tags |