mirror of https://github.com/apache/jclouds.git
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
46867d1353
commit
808bd6aad7
|
@ -41,8 +41,6 @@ import com.google.inject.Module;
|
|||
|
||||
/**
|
||||
* Implementation of {@link ApiMetadata} for Cloud Files.
|
||||
*
|
||||
* @author Jeremy Daggett
|
||||
*/
|
||||
public class CloudFilesApiMetadata extends BaseHttpApiMetadata<CloudFilesApi> {
|
||||
|
||||
|
|
|
@ -34,8 +34,6 @@ import com.google.common.collect.ImmutableMultimap;
|
|||
* Binds a list of email addresses to request headers.
|
||||
*
|
||||
* @see {@link CDNApi#purgeObject(String, String, Iterable)}
|
||||
*
|
||||
* @author Jeremy Daggett
|
||||
*/
|
||||
@Singleton
|
||||
public class BindCDNPurgeEmailAddressesToHeaders implements Binder {
|
||||
|
|
|
@ -29,8 +29,6 @@ import com.google.common.base.Objects.ToStringHelper;
|
|||
|
||||
/**
|
||||
* Represents a CDN Container in Rackspace Cloud Files.
|
||||
*
|
||||
* @author Jeremy Daggett
|
||||
*/
|
||||
public class CDNContainer implements Comparable<CDNContainer> {
|
||||
|
||||
|
|
|
@ -40,9 +40,6 @@ import com.google.common.base.Splitter;
|
|||
|
||||
/**
|
||||
* Parses the {@link CDNContainer} from the response headers.
|
||||
*
|
||||
* @author Jeremy Daggett
|
||||
*
|
||||
*/
|
||||
public class ParseCDNContainerFromHeaders implements Function<HttpResponse, CDNContainer>,
|
||||
InvocationContext<ParseCDNContainerFromHeaders> {
|
||||
|
|
|
@ -27,9 +27,6 @@ import com.google.common.base.Function;
|
|||
|
||||
/**
|
||||
* Parses the {@link CDNContainer} from the response headers.
|
||||
*
|
||||
* @author Jeremy Daggett
|
||||
*
|
||||
*/
|
||||
public class ParseCDNContainerURIFromHeaders implements Function<HttpResponse, URI> {
|
||||
|
||||
|
|
|
@ -42,7 +42,6 @@ import com.google.common.base.Supplier;
|
|||
* The Cloud Files Service Type will always default to OpenStack Object Storage ("object-storage").
|
||||
* <p/>
|
||||
*
|
||||
* @author Jeremy Daggett
|
||||
*
|
||||
* @see CloudFilesApi#cdnApiInRegion(String)
|
||||
* @see CDNApi
|
||||
|
|
|
@ -35,8 +35,6 @@ import com.google.common.net.MediaType;
|
|||
|
||||
/**
|
||||
* Options supported for updating CDN containers.
|
||||
*
|
||||
* @author Jeremy Daggett
|
||||
*/
|
||||
public class UpdateCDNContainerOptions extends BaseHttpRequestOptions {
|
||||
public static final UpdateCDNContainerOptions NONE = new UpdateCDNContainerOptions();
|
||||
|
|
|
@ -20,7 +20,6 @@ import org.jclouds.openstack.swift.v1.reference.SwiftHeaders;
|
|||
|
||||
/**
|
||||
* Additional headers specified by Rackspace Cloud Files.
|
||||
*
|
||||
*/
|
||||
public interface CloudFilesHeaders extends SwiftHeaders {
|
||||
// Access logs
|
||||
|
|
|
@ -21,8 +21,6 @@ import org.testng.annotations.Test;
|
|||
|
||||
/**
|
||||
* Tests live behavior of {@code CloudFilesApi}.
|
||||
*
|
||||
* @author Jeremy Daggett
|
||||
*/
|
||||
@Test(groups = "live", testName = "CloudFilesApiLiveTest")
|
||||
public class CloudFilesApiLiveTest extends BaseCloudFilesApiLiveTest {
|
||||
|
|
|
@ -25,8 +25,6 @@ import com.google.common.reflect.TypeToken;
|
|||
|
||||
/**
|
||||
* Tests the behavior of {@link CloudFilesApiMetadata}.
|
||||
*
|
||||
* @author Jeremy Daggett
|
||||
*/
|
||||
@Test(groups = "unit", testName = "CloudFilesApiMetadataTest")
|
||||
public class CloudFilesApiMetadataTest extends BaseApiMetadataTest {
|
||||
|
|
|
@ -30,8 +30,6 @@ import com.google.common.collect.ImmutableList;
|
|||
|
||||
/**
|
||||
* Tests the behavior of {@code BindCDNPurgeEmailAddressesToHeaders}.
|
||||
*
|
||||
* @author Jeremy Daggett
|
||||
*/
|
||||
@Test(groups = "unit", testName = "BindCDNPurgeEmailAddressesToHeadersMockTest")
|
||||
public class BindCDNPurgeEmailAddressesToHeadersMockTest extends BaseOpenStackMockTest<CloudFilesApi> {
|
||||
|
|
|
@ -25,8 +25,6 @@ import org.testng.annotations.Test;
|
|||
|
||||
/**
|
||||
* Tests the live behavior of the {@link RegionScopedBlobStoreContext}.
|
||||
*
|
||||
* @author Jeremy Daggett
|
||||
*/
|
||||
@Test(groups = "live")
|
||||
public class CloudFilesRegionScopedBlobStoreContextLiveTest extends RegionScopedBlobStoreContextLiveTest {
|
||||
|
|
|
@ -27,8 +27,6 @@ import org.testng.annotations.Test;
|
|||
/**
|
||||
* Tests the live behavior of the OpenStack Object Storage {@link AccountApi}
|
||||
* via the {@link CloudFilesApi}.
|
||||
*
|
||||
* @author Jeremy Daggett
|
||||
*/
|
||||
@Test(groups = "live", testName = "CloudFilesAccountApiLiveTest")
|
||||
public class CloudFilesAccountApiLiveTest extends AccountApiLiveTest {
|
||||
|
|
|
@ -22,8 +22,6 @@ import org.testng.annotations.Test;
|
|||
/**
|
||||
* Tests the live behavior of the OpenStack Object Storage {@link BulkApi}
|
||||
* via the {@link CloudFilesApi}.
|
||||
*
|
||||
* @author Jeremy Daggett
|
||||
*/
|
||||
@Test(groups = "live", testName = "CloudFilesBulkApiLiveTest")
|
||||
public class CloudFilesBulkApiLiveTest extends BulkApiLiveTest {
|
||||
|
|
|
@ -42,8 +42,6 @@ import com.google.common.io.ByteSource;
|
|||
|
||||
/**
|
||||
* Tests the live behavior of the {@code CloudFilesCDNApi}.
|
||||
*
|
||||
* @author Jeremy Daggett
|
||||
*/
|
||||
@Test(groups = "live", testName = "CloudFilesCDNApiLiveTest")
|
||||
public class CloudFilesCDNApiLiveTest extends BaseCloudFilesApiLiveTest {
|
||||
|
|
|
@ -48,8 +48,6 @@ import com.squareup.okhttp.mockwebserver.MockWebServer;
|
|||
|
||||
/**
|
||||
* Tests the behavior of the {@link CloudFilesCDNApi}.
|
||||
*
|
||||
* @author Jeremy Daggett
|
||||
*/
|
||||
@Test(groups = "unit", testName = "CloudFilesCDNApiMockTest")
|
||||
public class CloudFilesCDNApiMockTest extends BaseOpenStackMockTest<CloudFilesApi> {
|
||||
|
|
|
@ -22,8 +22,6 @@ import org.testng.annotations.Test;
|
|||
/**
|
||||
* Tests the live behavior of the OpenStack Object Storage {@link ContainerApi}
|
||||
* via the {@link CloudFilesApi}.
|
||||
*
|
||||
* @author Jeremy Daggett
|
||||
*/
|
||||
@Test(groups = "live", testName = "CloudFilesContainerApiLiveTest")
|
||||
public class CloudFilesContainerApiLiveTest extends ContainerApiLiveTest {
|
||||
|
|
|
@ -22,8 +22,6 @@ import org.testng.annotations.Test;
|
|||
/**
|
||||
* Tests the live behavior of the OpenStack Object Storage {@link ObjectApi}
|
||||
* via the {@link CloudFilesApi}.
|
||||
*
|
||||
* @author Jeremy Daggett
|
||||
*/
|
||||
@Test(groups = "live", testName = "CloudFilesObjectApiLiveTest")
|
||||
public class CloudFilesObjectApiLiveTest extends ObjectApiLiveTest {
|
||||
|
|
|
@ -22,8 +22,6 @@ import org.testng.annotations.Test;
|
|||
|
||||
/**
|
||||
* Base class for all {@link CloudFilesApi} live tests.
|
||||
*
|
||||
* @author Jeremy Daggett
|
||||
*/
|
||||
@Test(groups = "live", testName = "BaseCloudFilesApiLiveTest")
|
||||
public abstract class BaseCloudFilesApiLiveTest extends BaseSwiftApiLiveTest<CloudFilesApi> {
|
||||
|
|
|
@ -34,8 +34,6 @@ import com.google.common.net.MediaType;
|
|||
|
||||
/**
|
||||
* Tests behavior of {@link UpdateCDNContainerOptions}.
|
||||
*
|
||||
* @author Jeremy Daggett
|
||||
*/
|
||||
@Test(groups = "unit")
|
||||
public class UpdateCDNContainerOptionsTest {
|
||||
|
|
|
@ -43,10 +43,6 @@ import org.jclouds.rackspace.cloudidentity.v2_0.config.CloudIdentityCredentialTy
|
|||
import com.google.common.collect.ImmutableSet;
|
||||
import com.google.inject.Module;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Jeremy Daggett
|
||||
*/
|
||||
public class CloudFilesUKProviderMetadata extends BaseProviderMetadata {
|
||||
|
||||
public static Builder builder() {
|
||||
|
|
|
@ -45,8 +45,6 @@ import com.google.inject.Module;
|
|||
|
||||
/**
|
||||
* Implementation of {@link ProviderMetadata} for Rackspace Cloud Files US regions.
|
||||
*
|
||||
* @author Jeremy Daggett
|
||||
*/
|
||||
public class CloudFilesUSProviderMetadata extends BaseProviderMetadata {
|
||||
|
||||
|
|
Loading…
Reference in New Issue