|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.util.AbstractMap<String,Object>
com.google.api.client.util.GenericData
com.google.api.client.http.json.JsonHttpRequest
com.google.api.services.drive.DriveRequest
com.google.api.services.drive.Drive.Files.Get
public class Drive.Files.Get
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from class com.google.api.client.util.GenericData |
|---|
GenericData.Flags |
| Nested classes/interfaces inherited from class java.util.AbstractMap |
|---|
AbstractMap.SimpleEntry<K,V>, AbstractMap.SimpleImmutableEntry<K,V> |
| Nested classes/interfaces inherited from interface java.util.Map |
|---|
Map.Entry<K,V> |
| Method Summary | |
|---|---|
void |
download(OutputStream outputStream)
|
File |
execute()
Sends the "get" request to the Drive server. |
InputStream |
executeAsMedia()
Deprecated. (scheduled to be removed in 1.7) Use download(java.io.OutputStream) to write to an output
stream. If the downloaded stream needs to be parsed
request.setAlt("media").executeAsInputStream() can be used instead. |
String |
getFileId()
The ID for the file in question. |
MediaHttpDownloader |
getMediaHttpDownloader()
Returns the Media HTTP downloader. |
String |
getProjection()
Restrict information returned for simplicity and optimization. |
Boolean |
getUpdateViewedDate()
Whether to update the view date after successfully retrieving the file. |
boolean |
isUpdateViewedDate()
Convenience method that returns only Boolean.TRUE or Boolean.FALSE. |
void |
queue(BatchRequest batch,
JsonBatchCallback<File> callback)
Queues the "get" request to the Drive server into the given batch request. |
Drive.Files.Get |
setFields(String fields)
Selector specifying which fields to include in a partial response. |
Drive.Files.Get |
setFileId(String fileId)
The ID for the file in question. |
Drive.Files.Get |
setProjection(String projection)
Restrict information returned for simplicity and optimization. |
Drive.Files.Get |
setUpdateViewedDate(Boolean updateViewedDate)
Whether to update the view date after successfully retrieving the file. |
| Methods inherited from class com.google.api.services.drive.DriveRequest |
|---|
getAlt, getFields, getKey, getOauthToken, getPrettyPrint, getQuotaUser, getUserIp, setAlt, setKey, setOauthToken, setPrettyPrint, setQuotaUser, setUserIp |
| Methods inherited from class com.google.api.client.http.json.JsonHttpRequest |
|---|
buildHttpRequest, buildHttpRequestUrl, executeAsInputStream, executeUnparsed, getClient, getEnableGZipContent, getJsonContent, getLastResponseHeaders, getMethod, getRequestHeaders, getUriTemplate, setEnableGZipContent, setRequestHeaders |
| Methods inherited from class com.google.api.client.util.GenericData |
|---|
clone, entrySet, get, getClassInfo, getUnknownKeys, put, putAll, remove, set, setUnknownKeys |
| Methods inherited from class java.util.AbstractMap |
|---|
clear, containsKey, containsValue, equals, hashCode, isEmpty, keySet, size, toString, values |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Method Detail |
|---|
public File execute()
throws IOException
File response
IOException - if the request fails
@Deprecated
public InputStream executeAsMedia()
throws IOException
download(java.io.OutputStream) to write to an output
stream. If the downloaded stream needs to be parsed
request.setAlt("media").executeAsInputStream() can be used instead.
Callers are responsible for closing the input stream.
IOException - if the request fails
public void download(OutputStream outputStream)
throws IOException
download in class JsonHttpRequestIOException
public void queue(BatchRequest batch,
JsonBatchCallback<File> callback)
throws IOException
Example usage:
request.queue(batchRequest, new JsonBatchCallback<File>() {
public void onSuccess(File content, GoogleHeaders responseHeaders) {
log("Success");
}
public void onFailure(GoogleJsonError e, GoogleHeaders responseHeaders) {
log(e.getMessage());
}
});
batch - a single batch of requestscallback - batch callback
IOExceptionpublic Drive.Files.Get setFields(String fields)
DriveRequest
setFields in class DriveRequestpublic String getFileId()
public Drive.Files.Get setFileId(String fileId)
public Boolean getUpdateViewedDate()
public Drive.Files.Get setUpdateViewedDate(Boolean updateViewedDate)
public boolean isUpdateViewedDate()
Boolean.TRUE or Boolean.FALSE.
Boolean properties can have four possible values:
null, Data.NULL_BOOLEAN, Boolean.TRUE
or Boolean.FALSE.
This method returns Boolean.TRUE if the default of the property is Boolean.TRUE
and it is null or Data.NULL_BOOLEAN.
Boolean.FALSE is returned if the default of the property is Boolean.FALSE and
it is null or Data.NULL_BOOLEAN.
Whether to update the view date after successfully retrieving the file.
public String getProjection()
public Drive.Files.Get setProjection(String projection)
public MediaHttpDownloader getMediaHttpDownloader()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||