public class

IssuesQuery

extends Query
java.lang.Object
   ↳ com.google.gdata.client.Query
     ↳ com.google.gdata.client.projecthosting.IssuesQuery

Class Overview

Describes a query for the project issues feed.

Summary

[Expand]
Inherited Constants
From class com.google.gdata.client.Query
Fields
private String can Canned query identifier.
private Integer id Issue ID.
private String label Label.
private String owner Issue owner.
private String status Issue status.
[Expand]
Inherited Fields
From class com.google.gdata.client.Query
Public Constructors
IssuesQuery(URL feedUrl)
Constructs a new query object that targets a feed.
Public Methods
String getCan()
Returns the canned query identifier.
Integer getId()
Returns the issue ID.
String getLabel()
Returns the label.
String getOwner()
Returns the issue owner.
String getStatus()
Returns the issue status.
void setCan(String can)
Sets the canned query identifier.
void setId(Integer id)
Sets the issue ID.
void setLabel(String label)
Sets the label.
void setOwner(String owner)
Sets the issue owner.
void setStatus(String status)
Sets the issue status.
[Expand]
Inherited Methods
From class com.google.gdata.client.Query
From class java.lang.Object

Fields

private String can

Canned query identifier.

private Integer id

Issue ID.

private String label

Label.

private String owner

Issue owner.

private String status

Issue status.

Public Constructors

public IssuesQuery (URL feedUrl)

Constructs a new query object that targets a feed. The initial state of the query contains no parameters, meaning all entries in the feed would be returned if the query was executed immediately after construction.

Parameters
feedUrl The URL of the feed against which queries will be executed.

Public Methods

public String getCan ()

Returns the canned query identifier.

Returns
  • canned query identifier or null to indicate that the parameter is not set.

public Integer getId ()

Returns the issue ID.

Returns
  • issue ID or null to indicate that the parameter is not set.

public String getLabel ()

Returns the label.

Returns
  • label or null to indicate that the parameter is not set.

public String getOwner ()

Returns the issue owner.

Returns
  • issue owner or null to indicate that the parameter is not set.

public String getStatus ()

Returns the issue status.

Returns
  • issue status or null to indicate that the parameter is not set.

public void setCan (String can)

Sets the canned query identifier.

Parameters
can Canned query identifier or null to remove this parameter if set.

public void setId (Integer id)

Sets the issue ID.

Parameters
id Issue ID or null to remove this parameter if set.

public void setLabel (String label)

Sets the label.

Parameters
label Label or null to remove this parameter if set.

public void setOwner (String owner)

Sets the issue owner.

Parameters
owner Issue owner or null to remove this parameter if set.

public void setStatus (String status)

Sets the issue status.

Parameters
status Issue status or null to remove this parameter if set.