001/**
002 *
003 * Copyright 2020 Paul Schaub
004 *
005 * Licensed under the Apache License, Version 2.0 (the "License");
006 * you may not use this file except in compliance with the License.
007 * You may obtain a copy of the License at
008 *
009 *     http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017package org.jivesoftware.smackx.urldata.http.element;
018
019import org.jivesoftware.smack.util.XmlStringBuilder;
020
021import org.jivesoftware.smackx.urldata.element.MetaInformationElement;
022
023public abstract class NameValuePairElement implements MetaInformationElement {
024
025    public static final String ATTR_NAME = "name";
026    public static final String ATTR_VALUE = "value";
027
028    private final String name;
029    private final String value;
030
031    public NameValuePairElement(String name, String value) {
032        this.name = name;
033        this.value = value;
034    }
035
036    public String getName() {
037        return name;
038    }
039
040    public String getValue() {
041        return value;
042    }
043
044    public XmlStringBuilder addCommonXml(XmlStringBuilder sb) {
045        return sb.attribute(ATTR_NAME, getName())
046                .attribute(ATTR_VALUE, getValue());
047    }
048
049}