public class Resource extends Object implements Serializable, Cloneable
Represents a resource.
Constructor and Description |
---|
Resource() |
Modifier and Type | Method and Description |
---|---|
Resource |
addResourceMethodsEntry(String key,
Method value) |
Resource |
clearResourceMethodsEntries()
Removes all the entries added into ResourceMethods.
|
Resource |
clone() |
boolean |
equals(Object obj) |
String |
getId()
The resource's identifier.
|
String |
getParentId()
The parent resource's identifier.
|
String |
getPath()
The full path for this resource.
|
String |
getPathPart()
The last path segment for this resource.
|
Map<String,Method> |
getResourceMethods()
Map of methods for this resource, which is included only if the request
uses the embed query option.
|
int |
hashCode() |
void |
setId(String id)
The resource's identifier.
|
void |
setParentId(String parentId)
The parent resource's identifier.
|
void |
setPath(String path)
The full path for this resource.
|
void |
setPathPart(String pathPart)
The last path segment for this resource.
|
void |
setResourceMethods(Map<String,Method> resourceMethods)
Map of methods for this resource, which is included only if the request
uses the embed query option.
|
String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
Resource |
withId(String id)
The resource's identifier.
|
Resource |
withParentId(String parentId)
The parent resource's identifier.
|
Resource |
withPath(String path)
The full path for this resource.
|
Resource |
withPathPart(String pathPart)
The last path segment for this resource.
|
Resource |
withResourceMethods(Map<String,Method> resourceMethods)
Map of methods for this resource, which is included only if the request
uses the embed query option.
|
public void setId(String id)
The resource's identifier.
id
- The resource's identifier.public String getId()
The resource's identifier.
public Resource withId(String id)
The resource's identifier.
id
- The resource's identifier.public void setParentId(String parentId)
The parent resource's identifier.
parentId
- The parent resource's identifier.public String getParentId()
The parent resource's identifier.
public Resource withParentId(String parentId)
The parent resource's identifier.
parentId
- The parent resource's identifier.public void setPathPart(String pathPart)
The last path segment for this resource.
pathPart
- The last path segment for this resource.public String getPathPart()
The last path segment for this resource.
public Resource withPathPart(String pathPart)
The last path segment for this resource.
pathPart
- The last path segment for this resource.public void setPath(String path)
The full path for this resource.
path
- The full path for this resource.public String getPath()
The full path for this resource.
public Resource withPath(String path)
The full path for this resource.
path
- The full path for this resource.public Map<String,Method> getResourceMethods()
Map of methods for this resource, which is included only if the request uses the embed query option.
public void setResourceMethods(Map<String,Method> resourceMethods)
Map of methods for this resource, which is included only if the request uses the embed query option.
resourceMethods
- Map of methods for this resource, which is included only if the
request uses the embed query option.public Resource withResourceMethods(Map<String,Method> resourceMethods)
Map of methods for this resource, which is included only if the request uses the embed query option.
resourceMethods
- Map of methods for this resource, which is included only if the
request uses the embed query option.public Resource clearResourceMethodsEntries()
public String toString()
toString
in class Object
Object.toString()
Copyright © 2016. All rights reserved.