mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-01 09:45:59 +01:00
f7a1c750ad
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@11346 b35dd754-fafc-0310-a699-88a17e54d16e
45 lines
No EOL
779 B
Java
45 lines
No EOL
779 B
Java
/*
|
|
* Created on 2009-05-05
|
|
*/
|
|
package org.jivesoftware.smackx.pubsub;
|
|
|
|
import org.jivesoftware.smack.packet.PacketExtension;
|
|
|
|
class CarExtension implements PacketExtension
|
|
{
|
|
private String color;
|
|
private int numTires;
|
|
|
|
public CarExtension(String col, int num)
|
|
{
|
|
color = col;
|
|
numTires = num;
|
|
}
|
|
|
|
public String getColor()
|
|
{
|
|
return color;
|
|
}
|
|
|
|
public int getNumTires()
|
|
{
|
|
return numTires;
|
|
}
|
|
|
|
public String getElementName()
|
|
{
|
|
return "car";
|
|
}
|
|
|
|
public String getNamespace()
|
|
{
|
|
return "pubsub:test:vehicle";
|
|
}
|
|
|
|
public String toXML()
|
|
{
|
|
return "<" + getElementName() + " xmlns='" + getNamespace() + "'><paint color='" +
|
|
getColor() + "'/><tires num='" + getNumTires() + "'/></" + getElementName() + ">";
|
|
}
|
|
|
|
} |