All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.adyen.model.nexo.RelativeDistinguishedName Maven / Gradle / Ivy

There is a newer version: 28.4.0
Show newest version
package com.adyen.model.nexo;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * Definition: Certificate distinguished name (DN) -- Reference: RFC 3880: Internet X.509 Public Key Infrastructure Certificate and Certificate -- Usage: Identifies the issuer or the subject of a X.509 certificate.
 *
 * 

Java class for RelativeDistinguishedName complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="RelativeDistinguishedName">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Attribute" type="{}AttributeTypeCodeZ"/>
 *         <element name="AttributeValue" type="{}AttributeValue"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RelativeDistinguishedName", propOrder = { "attribute", "attributeValue" }) public class RelativeDistinguishedName { /** * The Attribute. */ @XmlElement(name = "Attribute", required = true) protected String attribute; /** * The Attribute value. */ @XmlElement(name = "AttributeValue", required = true) protected String attributeValue; /** * Gets the value of the attribute property. * * @return possible object is {@link String } */ public String getAttribute() { return attribute; } /** * Sets the value of the attribute property. * * @param value allowed object is {@link String } */ public void setAttribute(String value) { this.attribute = value; } /** * Gets the value of the attributeValue property. * * @return possible object is {@link String } */ public String getAttributeValue() { return attributeValue; } /** * Sets the value of the attributeValue property. * * @param value allowed object is {@link String } */ public void setAttributeValue(String value) { this.attributeValue = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy