/* * ==================================================================== * Copyright (c) 2005-2012 sventon project. All rights reserved. * * This software is licensed as described in the file LICENSE, which * you should have received as part of this distribution. The terms * are also available at http://www.sventon.org. * If newer versions of this license are posted there, you may use a * newer version instead, at your option. * ==================================================================== */ package org.sventon.model; import java.io.Serializable; /** * Represents a property value in a {@link Properties} instance. */ public class PropertyValue implements Serializable { private static final long serialVersionUID = 2191248457473951086L; private final String value; public PropertyValue(String value) { this.value = value; } public String getValue() { return value; } @Override public String toString() { return value; } }