Back to project page RateBeer-Mobile.
The source code is released under:
GNU General Public License
If you think the Android project RateBeer-Mobile listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright 2010, Jesper Fussing Mrk/*w w w . ja va2s . co m*/ * * This file is part of Ratebeer Mobile for Android. * * Ratebeer Mobile 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. * * Ratebeer Mobile 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 Ratebeer Mobile. If not, see <http://www.gnu.org/licenses/>. */ package dk.moerks.ratebeermobile.vo; public class Feed { public static final String ADD_BEER_TYPE = "ADD_BEER_TYPE"; public static final String RATED_BEER_TYPE = "RATED_BEER_TYPE"; public static final String MILESTONE_REACHED_TYPE = "MILESTONE_REACHED_TYPE"; public static final String REVIEWED_PLACE_TYPE = "REVIEWED_PLACE_TYPE"; public static final String UPDATED_BIO_TYPE = "UPDATED_BIO_TYPE"; public static final String ATTENDING_TYPE = "ATTENDING_TYPE"; private String type; private String friend; private String beer; private String score; private String ratings; private String activityTime; private String place; private String event; public String getScore() { return score; } public void setScore(String score) { this.score = score; } private String date; public String getType() { return type; } public void setType(String type) { this.type = type; } public String getFriend() { return friend; } public void setFriend(String friend) { this.friend = friend; } public String getBeer() { return beer; } public void setBeer(String beer) { this.beer = beer; } public String getDate() { return date; } public void setDate(String date) { this.date = date; } public void setRatings(String ratings) { this.ratings = ratings; } public String getRatings() { return ratings; } public void setActivityTime(String activityTime) { this.activityTime = activityTime; } public String getActivityTime() { return activityTime; } public void setPlace(String place) { this.place = place; } public String getPlace() { return place; } public void setEvent(String event) { this.event = event; } public String getEvent() { return event; } }