Wednesday, September 25, 2013

Don't take me for a Fool.


/*
 * Copyright 2004 Sun Microsystems, Inc.
 *
 * 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.nanotek.cms.domain;

import com.sun.syndication.feed.impl.ObjectBean;
import com.sun.syndication.feed.module.Extendable;
import com.sun.syndication.feed.module.Module;
import com.sun.syndication.feed.module.impl.ModuleUtils;

import java.io.Serializable;
import java.util.List;
import java.util.ArrayList;

/**
 * Bean for person elements of Atom feeds.
 * <p>
 * @author Alejandro Abdelnur
 * @author Dave Johnson (updated for Atom 1.0)
 */
public class Person extends AbstractBase<String>
{

    private String id;
    private String name;
    private String uri;  // since Atom 1.0 (was called url)
    private String uriResolved;
    private String email;
    private List modules;


public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getUri() {
return uri;
}
public void setUri(String uri) {
this.uri = uri;
}
public String getUriResolved() {
return uriResolved;
}
public void setUriResolved(String uriResolved) {
this.uriResolved = uriResolved;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public List getModules() {
return modules;
}
public void setModules(List modules) {
this.modules = modules;
}

}