public class Coordinate.Jobs
extends java.lang.Object
| Modifier and Type | Class and Description |
|---|---|
class |
Coordinate.Jobs.Get |
class |
Coordinate.Jobs.Insert |
class |
Coordinate.Jobs.List |
class |
Coordinate.Jobs.Patch |
class |
Coordinate.Jobs.Update |
| Constructor and Description |
|---|
Coordinate.Jobs() |
| Modifier and Type | Method and Description |
|---|---|
Coordinate.Jobs.Get |
get(java.lang.String teamId,
java.math.BigInteger jobId)
Retrieves a job, including all the changes made to the job.
|
Coordinate.Jobs.Insert |
insert(java.lang.String teamId,
java.lang.String address,
java.lang.Double lat,
java.lang.Double lng,
java.lang.String title,
Job content)
Inserts a new job.
|
Coordinate.Jobs.List |
list(java.lang.String teamId)
Retrieves jobs created or modified since the given timestamp.
|
Coordinate.Jobs.Patch |
patch(java.lang.String teamId,
java.math.BigInteger jobId,
Job content)
Updates a job.
|
Coordinate.Jobs.Update |
update(java.lang.String teamId,
java.math.BigInteger jobId,
Job content)
Updates a job.
|
public Coordinate.Jobs.Get get(java.lang.String teamId, java.math.BigInteger jobId) throws java.io.IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.teamId - Team IDjobId - Job numberjava.io.IOExceptionpublic Coordinate.Jobs.Insert insert(java.lang.String teamId, java.lang.String address, java.lang.Double lat, java.lang.Double lng, java.lang.String title, Job content) throws java.io.IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.teamId - Team IDaddress - Job address as newline (Unix) separated stringlat - The latitude coordinate of this job's location.lng - The longitude coordinate of this job's location.title - Job titlecontent - the Jobjava.io.IOExceptionpublic Coordinate.Jobs.List list(java.lang.String teamId) throws java.io.IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.teamId - Team IDjava.io.IOExceptionpublic Coordinate.Jobs.Patch patch(java.lang.String teamId, java.math.BigInteger jobId, Job content) throws java.io.IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.teamId - Team IDjobId - Job numbercontent - the Jobjava.io.IOExceptionpublic Coordinate.Jobs.Update update(java.lang.String teamId, java.math.BigInteger jobId, Job content) throws java.io.IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.teamId - Team IDjobId - Job numbercontent - the Jobjava.io.IOException