1 18 package sync4j.framework.engine.source; 19 20 27 public class ContentType implements java.io.Serializable { 28 public String type = null; 29 public String version = null; 30 public String capDescription = null; 31 32 36 public String getType() { 37 return type; 38 } 39 40 44 public void setType(String type) { 45 this.type = type; 46 } 47 48 52 public String getVersion() { 53 return version; 54 } 55 56 60 public void setVersion(String version) { 61 this.version = version; 62 } 63 64 66 public ContentType() { 67 } 68 69 public ContentType(String type, String version) { 70 this.type = type ; 71 this.version = version; 72 } 73 74 } | Popular Tags |