1 23 package com.sun.enterprise.webservice; 24 25 public class Import { 26 27 private String namespace; 28 private String location; 29 30 public Import() {} 31 32 public Import(String ns, String loc) { 33 this.namespace = ns; 34 this.location = loc; 35 } 36 37 public String getNamespace() { 38 return this.namespace; 39 } 40 41 public String getLocation() { 42 return this.location; 43 } 44 45 public void setLocation(String loc) { 46 this.location = loc; 47 } 48 49 public void setNamespace(String ns) { 50 this.namespace = ns; 51 } 52 } 53 | Popular Tags |