001/** 002 * 003 * Copyright the original author or authors 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.shim.packet; 018 019import org.jivesoftware.smack.packet.PacketExtension; 020 021/** 022 * Represents a <b>Header</b> entry as specified by the <a href="http://xmpp.org/extensions/xep-031.html">Stanza Headers and Internet Metadata (SHIM)</a> 023 024 * @author Robin Collier 025 */ 026public class Header implements PacketExtension 027{ 028 private String name; 029 private String value; 030 031 public Header(String name, String value) 032 { 033 this.name = name; 034 this.value = value; 035 } 036 037 public String getName() 038 { 039 return name; 040 } 041 042 public String getValue() 043 { 044 return value; 045 } 046 047 public String getElementName() 048 { 049 return "header"; 050 } 051 052 public String getNamespace() 053 { 054 return HeadersExtension.NAMESPACE; 055 } 056 057 public String toXML() 058 { 059 return "<header name='" + name + "'>" + value + "</header>"; 060 } 061 062}