1 16 package org.apache.axis2.addressing.miheaders; 17 18 21 public class RelatesTo { 22 25 private String value; 26 27 30 private String relationshipType; 31 32 37 public RelatesTo(String address) { 38 this.value = address; 39 } 40 41 47 public RelatesTo(String value, String relationshipType) { 48 this.value = value; 49 this.relationshipType = relationshipType; 50 } 51 52 57 public String getValue() { 58 return value; 59 } 60 61 66 public void setValue(String value) { 67 this.value = value; 68 } 69 70 75 public String getRelationshipType() { 76 return relationshipType; 77 } 78 79 84 public void setRelationshipType(String relationshipType) { 85 this.relationshipType = relationshipType; 86 } 87 } 88 | Popular Tags |