public class Space extends Object implements Serializable
Modifier and Type | Class and Description |
---|---|
static class |
Space.SpaceChildren |
static class |
Space.SpaceFields |
Modifier and Type | Field and Description |
---|---|
static String |
ADD_SPACE_MEMBERS_MUTATION_NAME |
static String |
CREATE_SPACE_MUTATION_NAME |
static String |
DELETE_SPACE_MUTATION_NAME |
static String |
ONE_SPACE_QUERY_OBJECT_NAME |
static String |
REMOVE_SPACE_MEMBERS_MUTATION_NAME |
static String |
SPACES_QUERY_OBJECT_NAME |
static String |
UPDATE_SPACE_MUTATION_NAME |
Constructor and Description |
---|
Space() |
Modifier and Type | Method and Description |
---|---|
Conversation |
getConversation() |
Date |
getCreated() |
Person |
getCreatedBy() |
String |
getDescription() |
String |
getId() |
List<Person> |
getMembers() |
Date |
getMembersUpdated() |
String |
getTitle() |
Date |
getUpdated() |
Person |
getUpdatedBy() |
void |
setConversation(Conversation conversation) |
void |
setCreated(Date created) |
void |
setCreatedBy(Person createdBy) |
void |
setDescription(String description) |
void |
setId(String id) |
void |
setMembers(List<Person> members) |
void |
setMembersUpdated(Date membersUpdated) |
void |
setTitle(String title) |
void |
setUpdated(Date updated) |
void |
setUpdatedBy(Person updatedBy) |
public static final String SPACES_QUERY_OBJECT_NAME
public static final String ONE_SPACE_QUERY_OBJECT_NAME
public static final String CREATE_SPACE_MUTATION_NAME
public static final String UPDATE_SPACE_MUTATION_NAME
public static final String DELETE_SPACE_MUTATION_NAME
public static final String REMOVE_SPACE_MEMBERS_MUTATION_NAME
public static final String ADD_SPACE_MEMBERS_MUTATION_NAME
public String getId()
public void setId(String id)
id
- String, id of the spacepublic String getDescription()
public void setDescription(String description)
description
- String, description set for the spacepublic String getTitle()
public void setTitle(String title)
title
- String, title of the spacepublic Date getCreated()
public void setCreated(Date created)
created
- Date the space was createdpublic Person getCreatedBy()
public void setCreatedBy(Person createdBy)
createdBy
- Person who created the spacepublic Date getUpdated()
public void setUpdated(Date updated)
updated
- Date the space was last updatedpublic Person getUpdatedBy()
public void setUpdatedBy(Person updatedBy)
updatedBy
- Person who last updated the spacepublic List<Person> getMembers()
Person
objects corresponding to the members of the spacepublic void setMembers(List<Person> members)
members
- List of Person
objects corresponding to the members of the spacepublic Date getMembersUpdated()
public void setMembersUpdated(Date membersUpdated)
membersUpdated
- Date of when members were last updated. Changed in 0.8.0 to Date (was incorrect)public Conversation getConversation()
public void setConversation(Conversation conversation)
conversation
- Conversation, corresponding to all messages in the spaceCopyright © 2018 OpenNTF. All rights reserved.