Created
June 26, 2011 06:06
-
-
Save hjast/1047297 to your computer and use it in GitHub Desktop.
Annoying Code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@JsonSerialize(include=JsonSerialize.Inclusion.NON_NULL) | |
public class API_Game | |
{ | |
public Long gameID; | |
public Sport sport; | |
public GameStatus status; | |
public API_Facility facility; | |
public String date; | |
public String time; | |
public Integer minPlayerCount; | |
public Long getGameID() { | |
return gameID; | |
} | |
public void setGameID(Long gameID) { | |
this.gameID = gameID; | |
} | |
public Sport getSport() { | |
return sport; | |
} | |
public void setSport(Sport sport) { | |
this.sport = sport; | |
} | |
public GameStatus getStatus() { | |
return status; | |
} | |
public void setStatus(GameStatus status) { | |
this.status = status; | |
} | |
public API_Facility getFacility() { | |
return facility; | |
} | |
public void setFacility(API_Facility facility) { | |
this.facility = facility; | |
} | |
public String getDate() { | |
return date; | |
} | |
public void setDate(String date) { | |
this.date = date; | |
} | |
public String getTime() { | |
return time; | |
} | |
public void setTime(String time) { | |
this.time = time; | |
} | |
public Integer getMinPlayerCount() { | |
return minPlayerCount; | |
} | |
public void setMinPlayerCount(Integer minPlayerCount) { | |
this.minPlayerCount = minPlayerCount; | |
} | |
public Integer getMaxPlayerCount() { | |
return maxPlayerCount; | |
} | |
public void setMaxPlayerCount(Integer maxPlayerCount) { | |
this.maxPlayerCount = maxPlayerCount; | |
} | |
public PlayLevel getPlayLevel() { | |
return playLevel; | |
} | |
public void setPlayLevel(PlayLevel playLevel) { | |
this.playLevel = playLevel; | |
} | |
public String getNotes() { | |
return notes; | |
} | |
public void setNotes(String notes) { | |
this.notes = notes; | |
} | |
public Integer getPlayerCount() { | |
return playerCount; | |
} | |
public void setPlayerCount(Integer playerCount) { | |
this.playerCount = playerCount; | |
} | |
public String getShortURL() { | |
return shortURL; | |
} | |
public void setShortURL(String shortURL) { | |
this.shortURL = shortURL; | |
} | |
public List<API_Player> getPlayers() { | |
return players; | |
} | |
public void setPlayers(List<API_Player> players) { | |
this.players = players; | |
} | |
public Boolean getDidIOrganize() { | |
return didIOrganize; | |
} | |
public void setDidIOrganize(Boolean didIOrganize) { | |
this.didIOrganize = didIOrganize; | |
} | |
public Boolean getDidIJoin() { | |
return didIJoin; | |
} | |
public void setDidIJoin(Boolean didIJoin) { | |
this.didIJoin = didIJoin; | |
} | |
public Integer maxPlayerCount; | |
public PlayLevel playLevel; | |
public String notes; | |
public Integer playerCount; | |
public String shortURL; | |
public List<API_Player> players; | |
public Boolean didIOrganize; | |
public Boolean didIJoin; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment