/** * Copyright 2011 Intuit Inc. All Rights Reserved */ package com.intuit.tank.vmManager.environment.amazon; /* * #%L * VmManager * %% * Copyright (C) 2011 - 2015 Intuit Inc. * %% * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * #L% */ import java.io.Serializable; /** * KeyValuePair * * @author dangleton * */ public class KeyValuePair implements Serializable { private static final long serialVersionUID = 1L; private String key; private String value; /** * @param key * @param value */ public KeyValuePair(String key, String value) { super(); this.key = key; this.value = value; } /** * @return the key */ public String getKey() { return key; } /** * @return the value */ public String getValue() { return value; } }