/* * #%L * Nazgul Project: nazgul-core-configuration-model * %% * Copyright (C) 2010 - 2017 jGuru Europe AB * %% * Licensed under the jGuru Europe AB license (the "License"), based * on Apache License, Version 2.0; you may not use this file except * in compliance with the License. * * You may obtain a copy of the License at * * http://www.jguru.se/licenses/jguruCorporateSourceLicense-2.0.txt * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * #L% * */ package se.jguru.nazgul.core.configuration.model.common; import se.jguru.nazgul.core.configuration.model.AbstractStringKeyedMutableProperty; import se.jguru.nazgul.core.xmlbinding.api.XmlBinder; import javax.persistence.Basic; import javax.persistence.Column; import javax.persistence.Entity; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * AbstractStringKeyedMutableProperty implementation using Strings as values. * * @author <a href="mailto:lj@jguru.se">Lennart Jörelid</a>, jGuru Europe AB */ @Entity @XmlType(namespace = XmlBinder.CORE_NAMESPACE, propOrder = {"value"}) @XmlAccessorType(XmlAccessType.FIELD) public class StringProperty extends AbstractStringKeyedMutableProperty<String> { // Internal state @Basic(optional = true) @Column(nullable = true) @XmlElement(required = false, nillable = true) private String value; /** * <p>JAXB / JPA-friendly constructor.</p> * <p><strong>Note!</strong> For framework use only.</p> */ public StringProperty() { } /** * Creates a new StringProperty from the supplied key and value data. * * @param key The key of this StringProperty. Cannot be null. * @param value The StringProperty value. Can be null. */ public StringProperty(final String key, final String value) { // Delegate super(key, String.class); // Assign internal state this.value = value; } /** * {@inheritDoc} */ @Override public void setValue(final String value) { this.value = value; } /** * {@inheritDoc} */ @Override public String getValue() { return value; } }