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
bd36ccd551
commit
b9b6f39d42
|
@ -47,8 +47,6 @@ import org.jclouds.rest.annotations.WrapWith;
|
|||
|
||||
/**
|
||||
* Provides synchronous access to the Enterprise Chef Api.
|
||||
*
|
||||
* @author Ignasi Barrera
|
||||
*/
|
||||
@RequestFilters(SignedHeaderAuth.class)
|
||||
@Consumes(MediaType.APPLICATION_JSON)
|
||||
|
|
|
@ -32,8 +32,6 @@ import com.google.inject.Module;
|
|||
|
||||
/**
|
||||
* Implementation of {@link ApiMetadata} for the Enterprise Chef api.
|
||||
*
|
||||
* @author Adrian Cole
|
||||
*/
|
||||
public class EnterpriseChefApiMetadata extends BaseHttpApiMetadata<EnterpriseChefApi> {
|
||||
|
||||
|
|
|
@ -24,8 +24,6 @@ import org.jclouds.providers.internal.BaseProviderMetadata;
|
|||
|
||||
/**
|
||||
* Implementation of @ link org.jclouds.types.ProviderMetadata} for Enterprise Chef
|
||||
*
|
||||
* @author Adrian Cole
|
||||
*/
|
||||
public class EnterpriseChefProviderMetadata extends BaseProviderMetadata
|
||||
{
|
||||
|
|
|
@ -32,8 +32,6 @@ import org.jclouds.rest.binders.BindToJsonPayload;
|
|||
/**
|
||||
* Binds a group to the payload expected for the Put method in the Enterprise Chef
|
||||
* Api.
|
||||
*
|
||||
* @author Ignasi Barrera
|
||||
*/
|
||||
@Singleton
|
||||
public class BindGroupToUpdateRequestJsonPayload extends BindToJsonPayload {
|
||||
|
|
|
@ -26,8 +26,6 @@ import com.google.common.base.Function;
|
|||
|
||||
/**
|
||||
* Gets the name of a group.
|
||||
*
|
||||
* @author Ignasi Barrera
|
||||
*/
|
||||
@Singleton
|
||||
public class GroupName implements Function<Object, String> {
|
||||
|
|
|
@ -23,8 +23,6 @@ import org.jclouds.rest.ConfiguresHttpApi;
|
|||
|
||||
/**
|
||||
* Configures the Enterprise Chef connection.
|
||||
*
|
||||
* @author Ignasi Barrera
|
||||
*/
|
||||
@ConfiguresHttpApi
|
||||
public class EnterpriseChefHttpApiModule extends BaseChefHttpApiModule<EnterpriseChefApi> {
|
||||
|
|
|
@ -28,8 +28,6 @@ import com.google.common.collect.ImmutableSet;
|
|||
|
||||
/**
|
||||
* Group object.
|
||||
*
|
||||
* @author Ignasi Barrera
|
||||
*/
|
||||
public class Group {
|
||||
public static Builder builder(String groupname) {
|
||||
|
|
|
@ -25,8 +25,6 @@ import com.google.gson.annotations.SerializedName;
|
|||
|
||||
/**
|
||||
* User object.
|
||||
*
|
||||
* @author Ignasi Barrera
|
||||
*/
|
||||
public class User {
|
||||
public static Builder builder() {
|
||||
|
|
|
@ -42,8 +42,6 @@ import com.google.inject.Module;
|
|||
|
||||
/**
|
||||
* Expect tests for the {@link EnterpriseChefApi} class.
|
||||
*
|
||||
* @author Ignasi Barrera
|
||||
*/
|
||||
@Test(groups = "unit", testName = "EnterpriseChefApiExpectTest")
|
||||
public class EnterpriseChefApiExpectTest extends BaseChefApiExpectTest<EnterpriseChefApi> {
|
||||
|
|
|
@ -33,8 +33,6 @@ import org.testng.annotations.Test;
|
|||
|
||||
/**
|
||||
* Tests behavior of the EnterpriseChefApi.
|
||||
*
|
||||
* @author Adrian Cole
|
||||
*/
|
||||
@Test(groups = "live", singleThreaded = true, testName = "EnterpriseChefApiLiveTest")
|
||||
public class EnterpriseChefApiLiveTest extends BaseChefApiLiveTest<EnterpriseChefApi> {
|
||||
|
|
|
@ -21,8 +21,6 @@ import org.testng.annotations.Test;
|
|||
|
||||
/**
|
||||
* Unit tests for the {@link EnterpriseChefProviderMetadata} class.
|
||||
*
|
||||
* @author Adrian Cole
|
||||
*/
|
||||
@Test(groups = "unit", testName = "EnterpriseChefProviderTest")
|
||||
public class EnterpriseChefProviderMetadataTest extends BaseProviderMetadataTest {
|
||||
|
|
|
@ -36,8 +36,6 @@ import com.google.inject.Injector;
|
|||
|
||||
/**
|
||||
* Unit tests for the {@link BindGroupToUpdateRequestJsonPayload} class.
|
||||
*
|
||||
* @author Ignasi Barrera
|
||||
*/
|
||||
@Test(groups = "unit", testName = "BindGroupToUpdateRequestJsonPayloadTest")
|
||||
public class BindGroupToUpdateRequestJsonPayloadTest {
|
||||
|
|
|
@ -25,8 +25,6 @@ import org.testng.annotations.Test;
|
|||
|
||||
/**
|
||||
* Unit tests for the {@link GroupName} class.
|
||||
*
|
||||
* @author Ignasi Barrera
|
||||
*/
|
||||
@Test(groups = "unit", testName = "GroupNameTest")
|
||||
public class GroupNameTest {
|
||||
|
|
Loading…
Reference in New Issue