From 7ad9bb5241df3787960c350afe1006b1b0ae5293 Mon Sep 17 00:00:00 2001 From: Rena Tsantouli Date: Thu, 30 Jun 2011 16:27:56 +0000 Subject: [PATCH] git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/application-support-layer/applicationSupportLayerCore@40948 82a268e6-3cf1-43bd-a215-b396298e98cf --- .../application/framework/core/util/Pair.java | 50 +++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 src/org/gcube/application/framework/core/util/Pair.java diff --git a/src/org/gcube/application/framework/core/util/Pair.java b/src/org/gcube/application/framework/core/util/Pair.java new file mode 100644 index 0000000..8a41903 --- /dev/null +++ b/src/org/gcube/application/framework/core/util/Pair.java @@ -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; + } + + +} +