Class ExtensibleType
- java.lang.Object
-
- network.oxalis.commons.certvalidator.jaxb.ExtensibleType
-
- Direct Known Subclasses:
CachedType,HandleErrorType,JunctionType,TryType,ValidatorType
public class ExtensibleType extends Object
Java class for ExtensibleType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ExtensibleType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <choice maxOccurs="unbounded" minOccurs="0"> <element name="Blacklist" type="{http://oxalis.network/xsd/certvalidator/1.0}BlacklistType"/> <element name="Cached" type="{http://oxalis.network/xsd/certvalidator/1.0}CachedType"/> <element name="Chain" type="{http://oxalis.network/xsd/certvalidator/1.0}ChainType"/> <element name="Class" type="{http://oxalis.network/xsd/certvalidator/1.0}ClassType"/> <element name="CriticalExtensionRecognized" type="{http://oxalis.network/xsd/certvalidator/1.0}CriticalExtensionRecognizedType"/> <element name="CriticalExtensionRequired" type="{http://oxalis.network/xsd/certvalidator/1.0}CriticalExtensionRequiredType"/> <element name="CRL" type="{http://oxalis.network/xsd/certvalidator/1.0}CRLType"/> <element name="Dummy" type="{http://oxalis.network/xsd/certvalidator/1.0}DummyType"/> <element name="Expiration" type="{http://oxalis.network/xsd/certvalidator/1.0}ExpirationType"/> <element name="HandleError" type="{http://oxalis.network/xsd/certvalidator/1.0}HandleErrorType"/> <element name="Junction" type="{http://oxalis.network/xsd/certvalidator/1.0}JunctionType"/> <element name="KeyUsage" type="{http://oxalis.network/xsd/certvalidator/1.0}KeyUsageType"/> <element name="OCSP" type="{http://oxalis.network/xsd/certvalidator/1.0}OCSPType"/> <element name="PrincipleName" type="{http://oxalis.network/xsd/certvalidator/1.0}PrincipleNameType"/> <element name="RuleReference" type="{http://oxalis.network/xsd/certvalidator/1.0}RuleReferenceType"/> <element name="Signing" type="{http://oxalis.network/xsd/certvalidator/1.0}SigningType"/> <element name="Try" type="{http://oxalis.network/xsd/certvalidator/1.0}TryType"/> <element name="ValidatorReference" type="{http://oxalis.network/xsd/certvalidator/1.0}ValidatorReferenceType"/> <element name="Whitelist" type="{http://oxalis.network/xsd/certvalidator/1.0}WhitelistType"/> <element name="Extension" type="{http://oxalis.network/xsd/certvalidator/1.0}ExtensionType"/> </choice> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<Object>blacklistOrCachedOrChain
-
Constructor Summary
Constructors Constructor Description ExtensibleType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Object>getBlacklistOrCachedOrChain()Gets the value of the blacklistOrCachedOrChain property.
-
-
-
Method Detail
-
getBlacklistOrCachedOrChain
public List<Object> getBlacklistOrCachedOrChain()
Gets the value of the blacklistOrCachedOrChain property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the blacklistOrCachedOrChain property.For example, to add a new item, do as follows:
getBlacklistOrCachedOrChain().add(newItem);Objects of the following type(s) are allowed in the list
BlacklistTypeCachedTypeChainTypeClassTypeCriticalExtensionRecognizedTypeCriticalExtensionRequiredTypeCRLTypeDummyTypeExpirationTypeHandleErrorTypeJunctionTypeKeyUsageTypeOCSPTypePrincipleNameTypeRuleReferenceTypeSigningTypeTryTypeValidatorReferenceTypeWhitelistTypeExtensionType
-
-