![JAR search and dependency download from the Maven repository](/logo.png)
org.apache.juneau.dto.atom.Person Maven / Gradle / Ivy
// ***************************************************************************************************************************
// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file *
// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file *
// * to you 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.apache.juneau.dto.atom;
import static org.apache.juneau.common.internal.StringUtils.*;
import java.net.*;
import org.apache.juneau.*;
import org.apache.juneau.internal.*;
/**
* Represents an atomPersonConstruct construct in the RFC4287 specification.
*
* Schema
*
* atomPersonConstruct =
* atomCommonAttributes,
* (element atom:name { text }
* & element atom:uri { atomUri }?
* & element atom:email { atomEmailAddress }?
* & extensionElement*)
*
*
* See Also:
*/
@FluentSetters
public class Person extends Common {
private String name;
private URI uri;
private String email;
/**
* Normal constructor.
*
* @param name The name of the person.
*/
public Person(String name) {
setName(name);
}
/** Bean constructor. */
public Person() {}
//-----------------------------------------------------------------------------------------------------------------
// Bean properties
//-----------------------------------------------------------------------------------------------------------------
/**
* Bean property getter: name .
*
*
* The name of the person.
*
* @return The property value, or null if it is not set.
*/
public String getName() {
return name;
}
/**
* Bean property setter: name .
*
*
* The name of the person.
*
* @param value
* The new value for this property.
*
Can be null to unset the property.
* @return This object
*/
public Person setName(String value) {
this.name = value;
return this;
}
/**
* Bean property getter: uri .
*
*
* The URI of the person.
*
* @return The property value, or null if it is not set.
*/
public URI getUri() {
return uri;
}
/**
* Bean property setter: uri .
*
*
* The URI of the person.
*
*
* The value can be of any of the following types: {@link URI}, {@link URL}, {@link String}.
* Strings must be valid URIs.
*
*
* URIs defined by {@link UriResolver} can be used for values.
*
* @param value
* The new value for this property.
*
Can be null to unset the property.
* @return This object
*/
public Person setUri(Object value) {
this.uri = toURI(value);
return this;
}
/**
* Bean property getter: email .
*
*
* The email address of the person.
*
* @return The property value, or null if it is not set.
*/
public String getEmail() {
return email;
}
/**
* Bean property setter: email .
*
*
* The email address of the person.
*
* @param value
* The new value for this property.
*
Can be null to unset the property.
* @return This object
*/
public Person setEmail(String value) {
this.email = value;
return this;
}
//-----------------------------------------------------------------------------------------------------------------
// Overridden setters (to simplify method chaining)
//-----------------------------------------------------------------------------------------------------------------
//
@Override /* GENERATED - org.apache.juneau.dto.atom.Common */
public Person setBase(Object value) {
super.setBase(value);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.atom.Common */
public Person setLang(String value) {
super.setLang(value);
return this;
}
//
}