com.evdb.javaapi.data
Class Performer

java.lang.Object
  extended by com.evdb.javaapi.data.Performer

public class Performer
extends java.lang.Object

Eventful performer object.

Use the PerformerOperations class to manipulate

Author:
tylerv
See Also:
PerformerOperations

Constructor Summary
Performer()
           
 
Method Summary
 java.util.List<Comment> getComments()
          List of performer comments
 java.util.Date getCreated()
          Date performer was created
 java.lang.String getCreator()
          Get the creator of the performer
 int getDemandCount()
          Return performer demand count
 int getDemandMemberCount()
          Total number of demand members
 int getEventCount()
          Number of performer events
 java.util.List<Event> getEvents()
          List of performer events
 java.util.List<Image> getImages()
          List the performer images
 java.util.List<Link> getLinks()
          Return a list of performer links
 java.lang.String getLongBio()
          Performer long bio
 java.lang.String getName()
          Performer name
 java.util.List<Property> getProperties()
          Return the properites
 java.lang.String getShortBio()
          Set the performer short bio
 java.lang.String getSpid()
          Return performer SPID
 java.util.List<Tag> getTags()
          List of performer tags
 java.lang.String getWithdrawnNote()
          Return the withdrawn note
 boolean isHuman()
          Whether the performer is human or not
 boolean isWithdrawn()
          Whether the performer is withdrawn
 void setComments(java.util.List<Comment> comments)
          List of performer comments.
 void setCreated(java.util.Date created)
          Date performer was created
 void setCreator(java.lang.String creator)
          Set the performer creator
 void setDemandCount(int demandCount)
          Set the performer demand count
 void setDemandMemberCount(int demandMemberCount)
          Total number of demand members.
 void setEventCount(int eventCount)
          Number of performer events.
 void setEvents(java.util.List<Event> events)
          Set the performer events.
 void setHuman(boolean human)
          Set whether the performer is human or not
 void setImages(java.util.List<Image> images)
          Set the performer images
 void setLinks(java.util.List<Link> links)
          Set the performer links.
 void setLongBio(java.lang.String longBio)
          Performer long bio
 void setName(java.lang.String name)
          Set the performer name
 void setProperties(java.util.List<Property> properties)
          Set the properties.
 void setShortBio(java.lang.String shortBio)
          Performer short bio
 void setSpid(java.lang.String spid)
          Set the performer SPID.
 void setTags(java.util.List<Tag> tags)
          List of performer tags.
 void setWithdrawn(boolean withdrawn)
          Whether the performer is withdrawn.
 void setWithdrawnNote(java.lang.String withdrawnNote)
          Set the withdrawn note.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Performer

public Performer()
Method Detail

getComments

public java.util.List<Comment> getComments()
List of performer comments

Returns:
the comments

setComments

public void setComments(java.util.List<Comment> comments)
List of performer comments. Use the PerformerOperations class to manipulate

Parameters:
comments - the comments to set
See Also:
PerformerOperations.addComment(String, Comment)

getCreated

public java.util.Date getCreated()
Date performer was created

Returns:
the created

setCreated

public void setCreated(java.util.Date created)
Date performer was created

Parameters:
created - the created to set

getCreator

public java.lang.String getCreator()
Get the creator of the performer

Returns:
the creator

setCreator

public void setCreator(java.lang.String creator)
Set the performer creator

Parameters:
creator - the creator to set

getDemandCount

public int getDemandCount()
Return performer demand count

Returns:
the demandCount

setDemandCount

public void setDemandCount(int demandCount)
Set the performer demand count

Parameters:
demandCount - the demandCount to set

getDemandMemberCount

public int getDemandMemberCount()
Total number of demand members

Returns:
the demandMemberCount

setDemandMemberCount

public void setDemandMemberCount(int demandMemberCount)
Total number of demand members. This is a calculated field, setting the field will have no effect

Parameters:
demandMemberCount - the demandMemberCount to set

getEventCount

public int getEventCount()
Number of performer events

Returns:
the eventCount

setEventCount

public void setEventCount(int eventCount)
Number of performer events. This is a calculated field, setting the field will have no effect

Parameters:
eventCount - the eventCount to set

getEvents

public java.util.List<Event> getEvents()
List of performer events

Returns:
the events

setEvents

public void setEvents(java.util.List<Event> events)
Set the performer events. Use the EventOperations class to manipulate

Parameters:
events - the events to set
See Also:
EventOperations.addPerformer(String, Performer)

isHuman

public boolean isHuman()
Whether the performer is human or not

Returns:
the human

setHuman

public void setHuman(boolean human)
Set whether the performer is human or not

Parameters:
human - the human to set

getImages

public java.util.List<Image> getImages()
List the performer images

Returns:
the images

setImages

public void setImages(java.util.List<Image> images)
Set the performer images

Parameters:
images - the images to set

getLinks

public java.util.List<Link> getLinks()
Return a list of performer links

Returns:
the links

setLinks

public void setLinks(java.util.List<Link> links)
Set the performer links. Use the PerformerOperations class to manipulate

Parameters:
links - the links to set
See Also:
PerformerOperations.addLink(String, Link)

getLongBio

public java.lang.String getLongBio()
Performer long bio

Returns:
the longBio

setLongBio

public void setLongBio(java.lang.String longBio)
Performer long bio

Parameters:
longBio - the longBio to set

getName

public java.lang.String getName()
Performer name

Returns:
the name

setName

public void setName(java.lang.String name)
Set the performer name

Parameters:
name - the name to set

getShortBio

public java.lang.String getShortBio()
Set the performer short bio

Returns:
the shortBio

setShortBio

public void setShortBio(java.lang.String shortBio)
Performer short bio

Parameters:
shortBio - the shortBio to set

getSpid

public java.lang.String getSpid()
Return performer SPID

Returns:
the SPID

setSpid

public void setSpid(java.lang.String spid)
Set the performer SPID. This is a calculated field, setting the field will have no effect

Parameters:
spid - the SPID to set

getTags

public java.util.List<Tag> getTags()
List of performer tags

Returns:
the tags

setTags

public void setTags(java.util.List<Tag> tags)
List of performer tags. Use the PerformerOperations class to manipulate

Parameters:
tags - the tags to set
See Also:
PerformerOperations.deleteTags(String, List)

isWithdrawn

public boolean isWithdrawn()
Whether the performer is withdrawn

Returns:
the withdrawn

setWithdrawn

public void setWithdrawn(boolean withdrawn)
Whether the performer is withdrawn. Use the PerformerOperations class to manipulate

Parameters:
withdrawn - the withdrawn to set
See Also:
PerformerOperations.withdraw(String, String)

getWithdrawnNote

public java.lang.String getWithdrawnNote()
Return the withdrawn note

Returns:
the withdrawnNote

setWithdrawnNote

public void setWithdrawnNote(java.lang.String withdrawnNote)
Set the withdrawn note. Use the PerformerOperations class to manipulate

Parameters:
withdrawnNote - the withdrawnNote to set
See Also:
PerformerOperations.withdraw(String, String)

getProperties

public java.util.List<Property> getProperties()
Return the properites

Returns:
the properties

setProperties

public void setProperties(java.util.List<Property> properties)
Set the properties. Use the PerformerOperations class to manipulate

Parameters:
properties - the properties to set
See Also:
PerformerOperations.addProperty(String, Property), PerformerOperations.deleteProperty(String, Property)


Copyright © 2007 Eventful Inc. All Rights Reserved.