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

edu.wustl.nrg.security.ChangeInfo Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2016.09.16 at 05:54:20 PM EDT 
//


package edu.wustl.nrg.security;

/*-
 * #%L
 * XNAT Data Source Backend
 * %%
 * Copyright (C) 2015 - 2016 Emory University
 * %%
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * #L%
 */

import java.math.BigInteger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for change_info complex type. * *

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

 * <complexType name="change_info">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="change_user" type="{http://nrg.wustl.edu/security}user" minOccurs="0"/>
 *         <element name="comment" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="change_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
 *       <attribute name="event_id" type="{http://www.w3.org/2001/XMLSchema}integer" />
 *       <attribute name="xdat_change_info_id" type="{http://www.w3.org/2001/XMLSchema}long" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "change_info", propOrder = { "changeUser", "comment" }) public class ChangeInfo { @XmlElement(name = "change_user") protected User changeUser; protected String comment; @XmlAttribute(name = "change_date") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar changeDate; @XmlAttribute(name = "event_id") protected BigInteger eventId; @XmlAttribute(name = "xdat_change_info_id") protected Long xdatChangeInfoId; /** * Gets the value of the changeUser property. * * @return * possible object is * {@link User } * */ public User getChangeUser() { return changeUser; } /** * Sets the value of the changeUser property. * * @param value * allowed object is * {@link User } * */ public void setChangeUser(User value) { this.changeUser = value; } /** * Gets the value of the comment property. * * @return * possible object is * {@link String } * */ public String getComment() { return comment; } /** * Sets the value of the comment property. * * @param value * allowed object is * {@link String } * */ public void setComment(String value) { this.comment = value; } /** * Gets the value of the changeDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getChangeDate() { return changeDate; } /** * Sets the value of the changeDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setChangeDate(XMLGregorianCalendar value) { this.changeDate = value; } /** * Gets the value of the eventId property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getEventId() { return eventId; } /** * Sets the value of the eventId property. * * @param value * allowed object is * {@link BigInteger } * */ public void setEventId(BigInteger value) { this.eventId = value; } /** * Gets the value of the xdatChangeInfoId property. * * @return * possible object is * {@link Long } * */ public Long getXdatChangeInfoId() { return xdatChangeInfoId; } /** * Sets the value of the xdatChangeInfoId property. * * @param value * allowed object is * {@link Long } * */ public void setXdatChangeInfoId(Long value) { this.xdatChangeInfoId = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy