org.apache.wink.common.model.atom
Class AtomCommonAttributes

java.lang.Object
  extended by org.apache.wink.common.model.atom.AtomCommonAttributes
Direct Known Subclasses:
AppCollection, AppService, AppWorkspace, AtomCategory, AtomContent, AtomEntry, AtomFeed, AtomLink, AtomText

public class AtomCommonAttributes
extends Object

Common attributes Per RFC4287

 Any element defined by this specification MAY have an xml:base attribute
 [W3C.REC-xmlbase-20010627]. When xml:base is used in an Atom Document, it serves the function
 described in section 5.1.1 of [RFC3986], establishing the base URI (or IRI) for resolving any
 relative references found within the effective scope of the xml:base attribute.
 
 Any element defined by this specification MAY have an xml:lang attribute, whose content indicates
 the natural language for the element and its descendents. The language context is only
 significant for elements and attributes declared to be "Language- Sensitive" by this
 specification. Requirements regarding the content and interpretation of xml:lang are specified in
 XML 1.0 [W3C.REC-xml-20040204], Section 2.12.
 
  atomCommonAttributes =
     attribute xml:base { atomUri }?,
     attribute xml:lang { atomLanguageTag }?,
     undefinedAttribute*
 


Field Summary
protected  String base
           
protected  String lang
           
 
Constructor Summary
AtomCommonAttributes()
           
AtomCommonAttributes(SyndCommonAttributes value)
           
 
Method Summary
 String getBase()
          Gets the value of base.
 String getLang()
          Gets the value of lang.
 Map<QName,String> getOtherAttributes()
          Gets a map that contains attributes that aren't bound to any typed on this class.
 void setBase(String value)
          Sets the value of base.
 void setLang(String value)
          Sets the value of lang.
protected  SyndCommonAttributes toSynd(SyndCommonAttributes value)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

base

protected String base

lang

protected String lang
Constructor Detail

AtomCommonAttributes

public AtomCommonAttributes()

AtomCommonAttributes

public AtomCommonAttributes(SyndCommonAttributes value)
Method Detail

toSynd

protected SyndCommonAttributes toSynd(SyndCommonAttributes value)

getBase

public String getBase()
Gets the value of base.


setBase

public void setBase(String value)
Sets the value of base.


getLang

public String getLang()
Gets the value of lang.


setLang

public void setLang(String value)
Sets the value of lang.


getOtherAttributes

public Map<QName,String> getOtherAttributes()
Gets a map that contains attributes that aren't bound to any typed 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


Copyright © 2009-2012 The Apache Software Foundation. All Rights Reserved.