// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2015.03.18 at 03:48:09 PM CET // package ch.fd.invoice440.request; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** * <p>Java class for mvgLawType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="mvgLawType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="insured_id" type="{http://www.forum-datenaustausch.ch/invoice}stringType1_35" /> * <attribute name="case_id" type="{http://www.forum-datenaustausch.ch/invoice}stringType1_35" /> * <attribute name="case_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" /> * <attribute name="contract_number" type="{http://www.forum-datenaustausch.ch/invoice}stringType1_35" /> * <attribute name="ssn" use="required" type="{http://www.forum-datenaustausch.ch/invoice}ssnPartyType" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "mvgLawType") public class MvgLawType { @XmlAttribute(name = "insured_id") protected String insuredId; @XmlAttribute(name = "case_id") protected String caseId; @XmlAttribute(name = "case_date") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar caseDate; @XmlAttribute(name = "contract_number") protected String contractNumber; @XmlAttribute(name = "ssn", required = true) protected String ssn; /** * Gets the value of the insuredId property. * * @return * possible object is * {@link String } * */ public String getInsuredId() { return insuredId; } /** * Sets the value of the insuredId property. * * @param value * allowed object is * {@link String } * */ public void setInsuredId(String value) { this.insuredId = value; } /** * Gets the value of the caseId property. * * @return * possible object is * {@link String } * */ public String getCaseId() { return caseId; } /** * Sets the value of the caseId property. * * @param value * allowed object is * {@link String } * */ public void setCaseId(String value) { this.caseId = value; } /** * Gets the value of the caseDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCaseDate() { return caseDate; } /** * Sets the value of the caseDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setCaseDate(XMLGregorianCalendar value) { this.caseDate = value; } /** * Gets the value of the contractNumber property. * * @return * possible object is * {@link String } * */ public String getContractNumber() { return contractNumber; } /** * Sets the value of the contractNumber property. * * @param value * allowed object is * {@link String } * */ public void setContractNumber(String value) { this.contractNumber = value; } /** * Gets the value of the ssn property. * * @return * possible object is * {@link String } * */ public String getSsn() { return ssn; } /** * Sets the value of the ssn property. * * @param value * allowed object is * {@link String } * */ public void setSsn(String value) { this.ssn = value; } }