Rena Tsantouli 2011-06-30 16:27:56 +00:00
parent 1cfef2229c
commit 7ad9bb5241
1 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,50 @@
package org.gcube.application.framework.core.util;
/**
* @author Valia Tsaqgkalidou (NKUA)
*/
public class Pair {
protected String name;
protected String value;
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* @return the value
*/
public String getValue() {
return value;
}
/**
* @param value the value to set
*/
public void setValue(String value) {
this.value = value;
}
/**
* @param name the name
* @param value the value
*/
public Pair(String name, String value) {
super();
this.name = name;
this.value = value;
}
}