fix javadoc

This commit is contained in:
Daniel Broudy 2015-06-12 14:26:50 -07:00 committed by Andrew Gaul
parent c0190dd03e
commit 7213acb03f
2 changed files with 6 additions and 3 deletions

View File

@ -113,7 +113,8 @@ public interface ObjectApi {
* @param objectName
* Name of the object
* @param options
* Supply {@link GetObjectOptions} with optional query parameters
* A class that implements {@link HttpRequestOptions}
* such as {@link GetObjectOptions} with optional query parameters
*
* @return a {@link GoogleCloudStorageObject}
*/
@ -153,7 +154,8 @@ public interface ObjectApi {
* @param objectName
* Name of the object
* @param options
* Supply {@link GetObjectOptions} with optional query parameters
* A class that implements {@link HttpRequestOptions}
* such as {@link GetObjectOptions} with optional query parameters
*
* @return a {@link GoogleCloudStorageObject}
*/

View File

@ -22,7 +22,8 @@ import org.jclouds.googlecloudstorage.domain.DomainResourceReferences.Projection
import org.jclouds.http.options.GetOptions;
/**
* Allows to optionally specify generation,ifGenerationMatch,ifGenerationNotMatch, ifMetagenerationMatch,ifMetagenerationNotMatch and projection which used in Bucket
* Allows to optionally specify generation, ifGenerationMatch, ifGenerationNotMatch, ifMetagenerationMatch,
* ifMetagenerationNotMatch and projection, in addition to the values in {@link GetOptions}.
*/
public class GetObjectOptions extends GetOptions {