1 package org.ogf.saga.job.abstracts; 2 3 public class AttributeVector { 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 public AttributeVector(String key, String[] value) { 21 this.key = key; 22 this.value = value; 23 } 24 25 }