Home | History | Annotate | Download | only in ksoap2
      1 
      2 package org.ksoap2;
      3 
      4 /**
      5  * HeaderProperty is a key - value pojo for storing http header properties.
      6  */
      7 public class HeaderProperty {
      8     private String key;
      9     private String value;
     10 
     11     public HeaderProperty(String key, String value) {
     12         this.key = key;
     13         this.value = value;
     14     }
     15 
     16     public String getKey() {
     17         return key;
     18     }
     19 
     20     public void setKey(String key) {
     21         this.key = key;
     22     }
     23 
     24     public String getValue() {
     25         return value;
     26     }
     27 
     28     public void setValue(String value) {
     29         this.value = value;
     30     }
     31 }
     32