/* * Copyright 2010-2014 the original author or authors. * * 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. */ package org.springframework.android.twittersearch; import java.util.Date; import org.codehaus.jackson.annotate.JsonIgnoreProperties; import org.codehaus.jackson.annotate.JsonProperty; /** * @author Roy Clarkson */ @JsonIgnoreProperties(ignoreUnknown = true) public class Tweet { @JsonProperty("from_user") private String fromUser; @JsonProperty("created_at") private Date createdAt; private String text; private String url; public void setFromUser(String fromUser) { this.fromUser = fromUser; } public String getFromUser() { return fromUser; } public void setCreatedAt(Date createdAt) { this.createdAt = createdAt; } public Date getCreatedAt() { return createdAt; } public void setText(String text) { this.text = text; } public String getText() { return text; } public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } }