/* * Copyright 2011 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.social.viadeo.api; import java.io.Serializable; /** * Model class representing the career of a member. */ public class Company implements Serializable { /** * */ private static final long serialVersionUID = -4448688201536453749L; private String description; private String phone; private String fax; private String industry; private String size; private String website; public Company(String name) { } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String getPhone() { return phone; } public void setPhone(String phone) { this.phone = phone; } public String getFax() { return fax; } public void setFax(String fax) { this.fax = fax; } public String getIndustry() { return industry; } public void setIndustry(String industry) { this.industry = industry; } public String getSize() { return size; } public void setSize(String size) { this.size = size; } public String getWebsite() { return website; } public void setWebsite(String website) { this.website = website; } }