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 String
getCharsetName()
Get the charset nameLocale
getLocale()
Get the localeString
getValue()
Get the valuevoid
setCharsetName(String charset)
Set the charset namevoid
setLocale(Locale locale)
Set the localevoid
setValue(String value)
Set the value
-
-
-
Method Detail
-
getLocale
public Locale getLocale() throws javax.xml.registry.JAXRException
Get the locale- Specified by:
getLocale
in 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:
setLocale
in interfacejavax.xml.registry.infomodel.LocalizedString
- Throws:
javax.xml.registry.JAXRException
-
getValue
public String getValue() throws javax.xml.registry.JAXRException
Get the value- Specified by:
getValue
in 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:
setValue
in 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:
getCharsetName
in 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:
setCharsetName
in interfacejavax.xml.registry.infomodel.LocalizedString
- Throws:
javax.xml.registry.JAXRException
-
-