Class XmlTrustedServiceProvider
- java.lang.Object
-
- eu.europa.esig.dss.diagnostic.jaxb.XmlTrustedServiceProvider
-
- All Implemented Interfaces:
Serializable
public class XmlTrustedServiceProvider extends Object implements Serializable
Java class for TrustedServiceProvider complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="TrustedServiceProvider"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="TSPName" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="TSPRegistrationIdentifier" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="CountryCode" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="TrustedServices"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="TrustedService" type="{http://dss.esig.europa.eu/validation/diagnostic}TrustedService" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType> </element> </sequence> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected StringcountryCodeprotected List<XmlTrustedService>trustedServicesprotected StringtspNameprotected StringtspRegistrationIdentifier
-
Constructor Summary
Constructors Constructor Description XmlTrustedServiceProvider()
-
Method Summary
Modifier and Type Method Description StringgetCountryCode()Gets the value of the countryCode property.List<XmlTrustedService>getTrustedServices()StringgetTSPName()Gets the value of the tspName property.StringgetTSPRegistrationIdentifier()Gets the value of the tspRegistrationIdentifier property.voidsetCountryCode(String value)Sets the value of the countryCode property.voidsetTrustedServices(List<XmlTrustedService> trustedServices)voidsetTSPName(String value)Sets the value of the tspName property.voidsetTSPRegistrationIdentifier(String value)Sets the value of the tspRegistrationIdentifier property.
-
-
-
Field Detail
-
tspName
protected String tspName
-
tspRegistrationIdentifier
protected String tspRegistrationIdentifier
-
countryCode
protected String countryCode
-
trustedServices
protected List<XmlTrustedService> trustedServices
-
-
Method Detail
-
getTSPName
public String getTSPName()
Gets the value of the tspName property.- Returns:
- possible object is
String
-
setTSPName
public void setTSPName(String value)
Sets the value of the tspName property.- Parameters:
value- allowed object isString
-
getTSPRegistrationIdentifier
public String getTSPRegistrationIdentifier()
Gets the value of the tspRegistrationIdentifier property.- Returns:
- possible object is
String
-
setTSPRegistrationIdentifier
public void setTSPRegistrationIdentifier(String value)
Sets the value of the tspRegistrationIdentifier property.- Parameters:
value- allowed object isString
-
getCountryCode
public String getCountryCode()
Gets the value of the countryCode property.- Returns:
- possible object is
String
-
setCountryCode
public void setCountryCode(String value)
Sets the value of the countryCode property.- Parameters:
value- allowed object isString
-
getTrustedServices
public List<XmlTrustedService> getTrustedServices()
-
setTrustedServices
public void setTrustedServices(List<XmlTrustedService> trustedServices)
-
-