Class LocalizedStringImpl
- java.lang.Object
-
- com.sun.xml.registry.uddi.infomodel.LocalizedStringImpl
-
- All Implemented Interfaces:
Serializable,javax.xml.registry.infomodel.LocalizedString
public class LocalizedStringImpl extends Object implements javax.xml.registry.infomodel.LocalizedString, Serializable
Implementation of JAXR LocalizedString.- Author:
- Bobby Bissett
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LocalizedStringImpl()Default constructorLocalizedStringImpl(Locale locale, String value)Utility constructor sets locale and value
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCharsetName()Get the charset nameLocalegetLocale()Get the localeStringgetValue()Get the valuevoidsetCharsetName(String charset)Set the charset namevoidsetLocale(Locale locale)Set the localevoidsetValue(String value)Set the value
-
-
-
Method Detail
-
getLocale
public Locale getLocale() throws javax.xml.registry.JAXRException
Get the locale- Specified by:
getLocalein interfacejavax.xml.registry.infomodel.LocalizedString- Throws:
javax.xml.registry.JAXRException
-
setLocale
public void setLocale(Locale locale) throws javax.xml.registry.JAXRException
Set the locale- Specified by:
setLocalein interfacejavax.xml.registry.infomodel.LocalizedString- Throws:
javax.xml.registry.JAXRException
-
getValue
public String getValue() throws javax.xml.registry.JAXRException
Get the value- Specified by:
getValuein interfacejavax.xml.registry.infomodel.LocalizedString- Throws:
javax.xml.registry.JAXRException
-
setValue
public void setValue(String value) throws javax.xml.registry.JAXRException
Set the value- Specified by:
setValuein interfacejavax.xml.registry.infomodel.LocalizedString- Throws:
javax.xml.registry.JAXRException
-
getCharsetName
public String getCharsetName() throws javax.xml.registry.JAXRException
Get the charset name- Specified by:
getCharsetNamein interfacejavax.xml.registry.infomodel.LocalizedString- Throws:
javax.xml.registry.JAXRException
-
setCharsetName
public void setCharsetName(String charset) throws javax.xml.registry.JAXRException
Set the charset name- Specified by:
setCharsetNamein interfacejavax.xml.registry.infomodel.LocalizedString- Throws:
javax.xml.registry.JAXRException
-
-