Class AppCommonAttributes
- java.lang.Object
-
- org.jboss.resteasy.plugins.providers.atom.app.AppCommonAttributes
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
AppAccept,AppCategories,AppCollection,AppService,AppWorkspace
public class AppCommonAttributes extends java.lang.Object implements java.io.SerializableAttributes common across all atom app types- Version:
- $Revision: 1 $
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.Stringbaseprivate java.lang.Stringlangprivate java.util.Map<javax.xml.namespace.QName,java.lang.String>otherAttributesprivate static longserialVersionUIDprivate java.lang.Stringspace
-
Constructor Summary
Constructors Constructor Description AppCommonAttributes()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetBase()Gets the value of the base property.java.lang.StringgetLang()Gets the value of the lang property.java.util.Map<javax.xml.namespace.QName,java.lang.String>getOtherAttributes()Gets a map that contains attributes that aren't bound to any typed property on this class.java.lang.StringgetSpace()Gets the value of the space property.voidsetBase(java.lang.String value)Sets the value of the base property.voidsetLang(java.lang.String value)Sets the value of the lang property.voidsetSpace(java.lang.String value)Sets the value of the space property.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
base
private java.lang.String base
-
lang
private java.lang.String lang
-
space
private java.lang.String space
-
otherAttributes
private java.util.Map<javax.xml.namespace.QName,java.lang.String> otherAttributes
-
-
Method Detail
-
getBase
public java.lang.String getBase()
Gets the value of the base property.- Returns:
- possible object is
String
-
setBase
public void setBase(java.lang.String value)
Sets the value of the base property.- Parameters:
value- allowed object isString
-
getLang
public java.lang.String getLang()
Gets the value of the lang property.- Returns:
- possible object is
String
-
setLang
public void setLang(java.lang.String value)
Sets the value of the lang property.- Parameters:
value- allowed object isString
-
getSpace
public java.lang.String getSpace()
Gets the value of the space property.- Returns:
- possible object is
String
-
setSpace
public void setSpace(java.lang.String value)
Sets the value of the space property.- Parameters:
value- allowed object isString
-
getOtherAttributes
public java.util.Map<javax.xml.namespace.QName,java.lang.String> getOtherAttributes()
Gets a map that contains attributes that aren't bound to any typed property on this class.the map is keyed by the name of the attribute and the value is the string value of the attribute. the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter.
- Returns:
- always non-null
-
-