blob: 2dd16238cfd2371301cc86ecb8e47418f61ce364 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 Tasktop Technologies and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation
// 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.
package org.eclipse.mylyn.internal.hudson.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for hudson.model.View-UserInfo complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="hudson.model.View-UserInfo">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="lastChange" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* &lt;element name="project" type="{}hudson.model.AbstractProject" minOccurs="0"/>
* &lt;element name="user" type="{}hudson.model.User" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "hudson.model.View-UserInfo", propOrder = {
"lastChange",
"project",
"user"
})
@SuppressWarnings("all")
public class HudsonModelViewUserInfo {
protected Long lastChange;
protected HudsonModelAbstractProject project;
protected HudsonModelUser user;
/**
* Gets the value of the lastChange property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getLastChange() {
return lastChange;
}
/**
* Sets the value of the lastChange property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setLastChange(Long value) {
this.lastChange = value;
}
/**
* Gets the value of the project property.
*
* @return
* possible object is
* {@link HudsonModelAbstractProject }
*
*/
public HudsonModelAbstractProject getProject() {
return project;
}
/**
* Sets the value of the project property.
*
* @param value
* allowed object is
* {@link HudsonModelAbstractProject }
*
*/
public void setProject(HudsonModelAbstractProject value) {
this.project = value;
}
/**
* Gets the value of the user property.
*
* @return
* possible object is
* {@link HudsonModelUser }
*
*/
public HudsonModelUser getUser() {
return user;
}
/**
* Sets the value of the user property.
*
* @param value
* allowed object is
* {@link HudsonModelUser }
*
*/
public void setUser(HudsonModelUser value) {
this.user = value;
}
}