public class Author extends Object implements Serializable
Java class for author complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="author"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="homeUrl" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="email" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="dateLastActive" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="publishingPlatform" type="{}authorPublishingPlatform"/> </sequence> </restriction> </complexContent> </complexType>
Modifier and Type | Field and Description |
---|---|
protected String |
dateLastActive |
protected String |
description |
protected String |
email |
protected String |
homeUrl |
protected String |
name |
protected AuthorPublishingPlatform |
publishingPlatform |
Constructor and Description |
---|
Author() |
Modifier and Type | Method and Description |
---|---|
String |
getDateLastActive()
Gets the value of the dateLastActive property.
|
String |
getDescription()
Gets the value of the description property.
|
String |
getEmail()
Gets the value of the email property.
|
String |
getHomeUrl()
Gets the value of the homeUrl property.
|
String |
getName()
Gets the value of the name property.
|
AuthorPublishingPlatform |
getPublishingPlatform()
Gets the value of the publishingPlatform property.
|
void |
setDateLastActive(String value)
Sets the value of the dateLastActive property.
|
void |
setDescription(String value)
Sets the value of the description property.
|
void |
setEmail(String value)
Sets the value of the email property.
|
void |
setHomeUrl(String value)
Sets the value of the homeUrl property.
|
void |
setName(String value)
Sets the value of the name property.
|
void |
setPublishingPlatform(AuthorPublishingPlatform value)
Sets the value of the publishingPlatform property.
|
protected String name
protected String homeUrl
protected String email
protected String description
protected String dateLastActive
protected AuthorPublishingPlatform publishingPlatform
public String getName()
String
public void setName(String value)
value
- allowed object is
String
public String getHomeUrl()
String
public void setHomeUrl(String value)
value
- allowed object is
String
public String getEmail()
String
public void setEmail(String value)
value
- allowed object is
String
public String getDescription()
String
public void setDescription(String value)
value
- allowed object is
String
public String getDateLastActive()
String
public void setDateLastActive(String value)
value
- allowed object is
String
public AuthorPublishingPlatform getPublishingPlatform()
AuthorPublishingPlatform
public void setPublishingPlatform(AuthorPublishingPlatform value)
value
- allowed object is
AuthorPublishingPlatform
Copyright © 2018 The Apache Software Foundation. All rights reserved.