001/*
002 * (C) Copyright 2015 Nuxeo SA (http://nuxeo.com/) and others.
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *     http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 *
016 * Contributors:
017 *      Andre Justo
018 *      Anahide Tchertchian
019 */
020package org.nuxeo.runtime.services.config;
021
022import org.nuxeo.common.xmap.annotation.XNode;
023import org.nuxeo.common.xmap.annotation.XObject;
024
025/**
026 * Descriptor for JSF configuration contributions.
027 *
028 * @since 7.4
029 */
030@XObject("property")
031public class ConfigurationPropertyDescriptor {
032
033    @XNode("@name")
034    protected String name;
035
036    @XNode
037    protected String value;
038
039    public String getName() {
040        return name;
041    }
042
043    public String getValue() {
044        return value;
045    }
046
047    @Override
048    public ConfigurationPropertyDescriptor clone() {
049        ConfigurationPropertyDescriptor clone = new ConfigurationPropertyDescriptor();
050        clone.name = name;
051        clone.value = value;
052        return clone;
053    }
054
055    public void merge(ConfigurationPropertyDescriptor other) {
056        value = other.value;
057    }
058}