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:
Andrew Gaul 2014-06-07 21:11:47 -07:00
parent eb13a0a209
commit deec26110c
21 changed files with 0 additions and 39 deletions

View File

@ -34,8 +34,6 @@ import com.google.inject.Module;
/**
* Implementation of ApiMetadata for Amazon Glacier API
*
* @author Roman Coedo
*/
public class GlacierApiMetadata extends BaseRestApiMetadata {

View File

@ -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)

View File

@ -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 {

View File

@ -25,8 +25,6 @@ import org.jclouds.http.HttpResponseException;
/**
* Encapsulates a GlacierError.
*
* @author Roman Coedo
*/
public class GlacierResponseException extends HttpResponseException {

View File

@ -23,8 +23,6 @@ import com.google.inject.AbstractModule;
/**
* Configures the parser mappings.
*
* @author Roman Coedo
*/
public class GlacierParserModule extends AbstractModule {

View File

@ -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> {

View File

@ -24,8 +24,6 @@ import com.google.common.base.Objects;
/**
* Defines attributes to describe a GlacierError
*
* @author Roman Coedo
*/
public class GlacierError {

View File

@ -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> {

View File

@ -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> {

View File

@ -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> {

View File

@ -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 {

View File

@ -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> {

View File

@ -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> {

View File

@ -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 {

View File

@ -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 {

View File

@ -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> {

View File

@ -18,8 +18,6 @@ package org.jclouds.glacier.reference;
/**
* Headers used by Amazon Glacier.
*
* @author Roman Coedo
*/
public final class GlacierHeaders {

View File

@ -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 {

View File

@ -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 {

View File

@ -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>{

View File

@ -44,8 +44,6 @@ import com.google.mockwebserver.RecordedRequest;
/**
* Mock test for Glacier.
*
* @author Roman Coedo
*/
public class GlacierClientMockTest {