
com.github.gabrielruiu.springsocial.yahoo.module.Field Maven / Gradle / Ivy
The newest version!
/**
* Copyright 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 com.github.gabrielruiu.springsocial.yahoo.module;
import java.util.Date;
import java.util.Set;
/**
* @author Ruiu Gabriel Mihai ([email protected])
*/
public abstract class Field extends YahooObject {
private int id;
private Date created;
private Date updated;
private String uri;
private FieldType type;
private Object value;
private Set flags;
private String title;
private boolean isConnection;
private String nickname;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public Date getCreated() {
return created;
}
public void setCreated(Date created) {
this.created = created;
}
public Date getUpdated() {
return updated;
}
public void setUpdated(Date updated) {
this.updated = updated;
}
public String getUri() {
return uri;
}
public void setUri(String uri) {
this.uri = uri;
}
public FieldType getType() {
return type;
}
public void setType(FieldType type) {
this.type = type;
}
public Object getValue() {
return value;
}
public void setValue(Object value) {
this.value = value;
}
public Set getFlags() {
return flags;
}
public void setFlags(Set flags) {
this.flags = flags;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public boolean isConnection() {
return isConnection;
}
public void setConnection(boolean isConnection) {
this.isConnection = isConnection;
}
public String getNickname() {
return nickname;
}
public void setNickname(String nickname) {
this.nickname = nickname;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy