/**
* This file is part of OpenSchedule for Android
*
* OpenSchedule for Android is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* OpenSchedule for Android is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with OpenSchedule for Android. If not, see <http://www.gnu.org/licenses/>.
*
* @author Daniel Frey <dmfrey at gmail dot com>
*
* This software can be found at <http://code.google.com/p/open-schedule-android/>
*
*/
package org.openschedule.domain;
import org.codehaus.jackson.annotate.JsonIgnoreProperties;
import org.codehaus.jackson.annotate.JsonProperty;
/**
* @author dmfrey
*
*/
@JsonIgnoreProperties( ignoreUnknown = true )
public class Track {
@JsonProperty
private Integer id;
@JsonProperty
private String name;
@JsonProperty
private Room room;
@JsonProperty
private Sponsor sponsor;
public Track() {}
public Integer getId() {
return id;
}
public void setId( Integer id ) {
this.id = id;
}
public String getName() {
return name;
}
public void setName( String name ) {
this.name = name;
}
public Room getRoom() {
return room;
}
public void setRoom( Room room ) {
this.room = room;
}
public Sponsor getSponsor() {
return sponsor;
}
public void setSponsor( Sponsor sponsor ) {
this.sponsor = sponsor;
}
}
|