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

org.certificateservices.messages.v2x.registration.jaxb.RegisterITSSRequest Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2020.05.30 at 07:57:06 AM CEST 
//


package org.certificateservices.messages.v2x.registration.jaxb;

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


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <extension base="{http://certificateservices.org/xsd/v2x_registration_2_0}BaseRegisterRequestType">
 *       <sequence>
 *         <element name="ecuType" type="{http://certificateservices.org/xsd/csmessages2_0}notemptystring"/>
 *         <element name="canonicalPublicKey" type="{http://certificateservices.org/xsd/v2x_registration_2_0}CanonicalKeyType"/>
 *         <element name="eaName" type="{http://certificateservices.org/xsd/v2x_registration_2_0}ProfileNameType"/>
 *         <element name="atPermissions" type="{http://certificateservices.org/xsd/v2x_registration_2_0}ATAppPermissionsType"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "ecuType", "canonicalPublicKey", "eaName", "atPermissions" }) @XmlRootElement(name = "RegisterITSSRequest") public class RegisterITSSRequest extends BaseRegisterRequestType { @XmlElement(required = true) protected String ecuType; @XmlElement(required = true) protected CanonicalKeyType canonicalPublicKey; @XmlElement(required = true) protected String eaName; @XmlElement(required = true) protected ATAppPermissionsType atPermissions; /** * Gets the value of the ecuType property. * * @return * possible object is * {@link String } * */ public String getEcuType() { return ecuType; } /** * Sets the value of the ecuType property. * * @param value * allowed object is * {@link String } * */ public void setEcuType(String value) { this.ecuType = value; } /** * Gets the value of the canonicalPublicKey property. * * @return * possible object is * {@link CanonicalKeyType } * */ public CanonicalKeyType getCanonicalPublicKey() { return canonicalPublicKey; } /** * Sets the value of the canonicalPublicKey property. * * @param value * allowed object is * {@link CanonicalKeyType } * */ public void setCanonicalPublicKey(CanonicalKeyType value) { this.canonicalPublicKey = value; } /** * Gets the value of the eaName property. * * @return * possible object is * {@link String } * */ public String getEaName() { return eaName; } /** * Sets the value of the eaName property. * * @param value * allowed object is * {@link String } * */ public void setEaName(String value) { this.eaName = value; } /** * Gets the value of the atPermissions property. * * @return * possible object is * {@link ATAppPermissionsType } * */ public ATAppPermissionsType getAtPermissions() { return atPermissions; } /** * Sets the value of the atPermissions property. * * @param value * allowed object is * {@link ATAppPermissionsType } * */ public void setAtPermissions(ATAppPermissionsType value) { this.atPermissions = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy