mirror of
https://github.com/apache/jclouds.git
synced 2025-02-15 06:26:55 +00:00
JCLOUDS-546: Remove Javadoc @author annotations
Annotations removed with: find -name \*.java | xargs sed -i /@author/d Empty Javadoc removed with multiple iterations of: find -name \*.java | xargs sed -i -z 's/ \*\n \*\// \*\//' find -name \*.java | xargs sed -i -z 's/ \* \n \*\// \*\//' find -name \*.java | xargs sed -i -z 's/\/\*\*\n \*\/\n//'
This commit is contained in:
parent
eb13a0a209
commit
deec26110c
@ -34,8 +34,6 @@ import com.google.inject.Module;
|
||||
|
||||
/**
|
||||
* Implementation of ApiMetadata for Amazon Glacier API
|
||||
*
|
||||
* @author Roman Coedo
|
||||
*/
|
||||
public class GlacierApiMetadata extends BaseRestApiMetadata {
|
||||
|
||||
|
@ -53,7 +53,6 @@ import com.google.common.util.concurrent.ListenableFuture;
|
||||
*
|
||||
* @see GlacierClient
|
||||
* @see <a href="http://aws.amazon.com/documentation/glacier/" />
|
||||
* @author Roman Coedo
|
||||
*/
|
||||
@Headers(keys = GlacierHeaders.VERSION, values = "2012-06-01")
|
||||
@RequestFilters(RequestAuthorizeSignature.class)
|
||||
|
@ -29,7 +29,6 @@ import org.jclouds.glacier.options.PaginationOptions;
|
||||
*
|
||||
* @see GlacierAsyncClient
|
||||
* @see <a href="http://aws.amazon.com/documentation/glacier/" />
|
||||
* @author Roman Coedo
|
||||
*/
|
||||
public interface GlacierClient extends Closeable {
|
||||
|
||||
|
@ -25,8 +25,6 @@ import org.jclouds.http.HttpResponseException;
|
||||
|
||||
/**
|
||||
* Encapsulates a GlacierError.
|
||||
*
|
||||
* @author Roman Coedo
|
||||
*/
|
||||
public class GlacierResponseException extends HttpResponseException {
|
||||
|
||||
|
@ -23,8 +23,6 @@ import com.google.inject.AbstractModule;
|
||||
|
||||
/**
|
||||
* Configures the parser mappings.
|
||||
*
|
||||
* @author Roman Coedo
|
||||
*/
|
||||
public class GlacierParserModule extends AbstractModule {
|
||||
|
||||
|
@ -41,8 +41,6 @@ import com.google.inject.Scopes;
|
||||
|
||||
/**
|
||||
* Configures the mappings. Installs the Object and Parser modules.
|
||||
*
|
||||
* @author Roman Coedo
|
||||
*/
|
||||
@ConfiguresRestClient
|
||||
public class GlacierRestClientModule extends RestClientModule<GlacierClient, GlacierAsyncClient> {
|
||||
|
@ -24,8 +24,6 @@ import com.google.common.base.Objects;
|
||||
|
||||
/**
|
||||
* Defines attributes to describe a GlacierError
|
||||
*
|
||||
* @author Roman Coedo
|
||||
*/
|
||||
public class GlacierError {
|
||||
|
||||
|
@ -27,8 +27,6 @@ import com.google.gson.annotations.SerializedName;
|
||||
|
||||
/**
|
||||
* Paginated collection used to store Vault listing information.
|
||||
*
|
||||
* @author Roman Coedo
|
||||
*/
|
||||
public class PaginatedVaultCollection extends IterableWithMarker<VaultMetadata> {
|
||||
|
||||
|
@ -29,8 +29,6 @@ import com.google.gson.annotations.SerializedName;
|
||||
|
||||
/**
|
||||
* Defines the attributes needed to describe a vault.
|
||||
*
|
||||
* @author Roman Coedo
|
||||
*/
|
||||
public class VaultMetadata implements Comparable<VaultMetadata> {
|
||||
|
||||
|
@ -27,8 +27,6 @@ import com.google.common.util.concurrent.ListenableFuture;
|
||||
|
||||
/**
|
||||
* Fallback used when deleting a vault.
|
||||
*
|
||||
* @author Roman Coedo
|
||||
*/
|
||||
public class FalseIfVaultNotEmpty implements Fallback<Boolean> {
|
||||
|
||||
|
@ -41,8 +41,6 @@ import com.google.common.net.HttpHeaders;
|
||||
|
||||
/**
|
||||
* Signs the request using the AWSRequestSignerV4.
|
||||
*
|
||||
* @author Roman Coedo
|
||||
*/
|
||||
@Singleton
|
||||
public class RequestAuthorizeSignature implements HttpRequestFilter {
|
||||
|
@ -25,8 +25,6 @@ import com.google.inject.TypeLiteral;
|
||||
|
||||
/**
|
||||
* Parses the JSON vault information from the HttpResponse.
|
||||
*
|
||||
* @author Roman Coedo
|
||||
*/
|
||||
public class ParseVaultMetadataFromHttpContent extends ParseJson<VaultMetadata> {
|
||||
|
||||
|
@ -25,8 +25,6 @@ import com.google.inject.TypeLiteral;
|
||||
|
||||
/**
|
||||
* Parses the JSON vault list from the HttpResponse.
|
||||
*
|
||||
* @author Roman Coedo
|
||||
*/
|
||||
public class ParseVaultMetadataListFromHttpContent extends ParseJson<PaginatedVaultCollection> {
|
||||
|
||||
|
@ -33,8 +33,6 @@ import com.google.inject.TypeLiteral;
|
||||
|
||||
/**
|
||||
* Parses a GlacierError from a Json response content.
|
||||
*
|
||||
* @author Roman Coedo
|
||||
*/
|
||||
public class ParseGlacierErrorFromJsonContent extends ParseJson<GlacierError> implements HttpErrorHandler {
|
||||
|
||||
|
@ -25,7 +25,6 @@ import org.jclouds.http.options.BaseHttpRequestOptions;
|
||||
* Pagination options used to specify the collection responses.
|
||||
*
|
||||
* @see <a href="http://docs.aws.amazon.com/amazonglacier/latest/dev/api-vaults-get.html" />
|
||||
* @author Roman Coedo
|
||||
*/
|
||||
public class PaginationOptions extends BaseHttpRequestOptions {
|
||||
|
||||
|
@ -27,7 +27,6 @@ import com.google.inject.Singleton;
|
||||
* Validates Vault names according to Amazon Vault conventions.
|
||||
*
|
||||
* @see <a href="http://docs.aws.amazon.com/amazonglacier/latest/dev/api-vault-put.html" />
|
||||
* @author Roman Coedo
|
||||
*/
|
||||
@Singleton
|
||||
public class VaultNameValidator extends Validator<String> {
|
||||
|
@ -18,8 +18,6 @@ package org.jclouds.glacier.reference;
|
||||
|
||||
/**
|
||||
* Headers used by Amazon Glacier.
|
||||
*
|
||||
* @author Roman Coedo
|
||||
*/
|
||||
public final class GlacierHeaders {
|
||||
|
||||
|
@ -47,7 +47,6 @@ import com.google.common.net.HttpHeaders;
|
||||
* Signs requests using the AWSv4 signing algorithm
|
||||
*
|
||||
* @see <a href="http://docs.aws.amazon.com/general/latest/gr/sigv4_signing.html" />
|
||||
* @author Roman Coedo
|
||||
*/
|
||||
public class AWSRequestSignerV4 {
|
||||
|
||||
|
@ -19,10 +19,6 @@ package org.jclouds.glacier;
|
||||
import org.jclouds.blobstore.internal.BaseBlobStoreApiMetadataTest;
|
||||
import org.testng.annotations.Test;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Roman Coedo
|
||||
*/
|
||||
@Test(groups = "unit", testName = "GlacierApiMetadataTest")
|
||||
public class GlacierApiMetadataTest extends BaseBlobStoreApiMetadataTest {
|
||||
|
||||
|
@ -28,8 +28,6 @@ import org.testng.annotations.Test;
|
||||
|
||||
/**
|
||||
* Live test for Glacier.
|
||||
*
|
||||
* @author Roman Coedo
|
||||
*/
|
||||
@Test(groups = { "integration", "live" })
|
||||
public class GlacierClientLiveTest extends BaseApiLiveTest<GlacierClient>{
|
||||
|
@ -44,8 +44,6 @@ import com.google.mockwebserver.RecordedRequest;
|
||||
|
||||
/**
|
||||
* Mock test for Glacier.
|
||||
*
|
||||
* @author Roman Coedo
|
||||
*/
|
||||
public class GlacierClientMockTest {
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user