1 package org.ogf.saga.job.abstracts; 2 3 public class Attribute { 4 5 private String key; 6 private String value; 7 8 public String getKey() { 9 return key; 10 } 11 public void setKey(String key) { 12 this.key = key; 13 } 14 public String getValue() { 15 return value; 16 } 17 public void setValue(String value) { 18 this.value = value; 19 } 20 21 public Attribute(String key, String value) { 22 this.key = key; 23 this.value = value; 24 } 25 26 }