Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Removed @author tags from javadocs #961

Merged
merged 2 commits into from
Aug 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* Used to populate a {@link ICicsRegion} field
* </p>
*
* @author Michael Baylis
*
*
*/
@Retention(RetentionPolicy.RUNTIME)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* Used to populate a {@link ICicsTerminal} field
* </p>
*
* @author Michael Baylis
*
*
*/
@Retention(RetentionPolicy.RUNTIME)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* Used to annotate annotations that are to be used for Test Class fields. To be
* populated by the Manager.
*
* @author Michael Baylis
*
*
*/
@Retention(RetentionPolicy.RUNTIME)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
/**
* Annotation to capture the other cloud related annotations from the test class
*
* @author Michael Baylis
*
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.TYPE })
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/**
* Cloud Container
*
* @author Michael Baylis
*
*
*/
public interface ICloudContainer {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
/**
* The Cloud Manager
*
* @author Michael Baylis
*
*
*/
@Component(service = { IManager.class })
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
/**
* Interface from the Cloud Manager to Cloud Container Providers
*
* @author Michael Baylis
*
*
*/
public interface ICloudContainerProvider {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* SPI for the Cloud Manager
*
* @author Michael Baylis
*
*
*/
public interface ICloudManagerSpi {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
* 8) Change config and start with ENV's and ensure they are set
* 9) Mounts a non created volume to the container and ensure all is created and mounted
*
* @author Michael Baylis
*
*
*/
@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/**
* An interface for the annotation object that represents the configurations for a container.
*
* @author James Davies
*
*/
public interface IDockerContainerConfig {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* container.
* <p>
*
* @author James Davies
*
*
*/
public interface IDockerExec {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* Implementation for the object that represents the container configurations that can be edited for container startup
*
* @author James Davies
*
*/
public class DockerContainerConfigImpl implements IDockerContainerConfig {
private List<IDockerVolume> volumes = new ArrayList<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
/**
* Docker Container implementation used to contain all container configurations.
*
* @author James Davies
*
*/
public class DockerContainerImpl implements IDockerContainer {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
/**
* Resource monitor for cleaning up orphaned containers.
*
* @author James Davies
*
*/
public class DockerContainerResourceMonitor implements Runnable {
private final IFramework framework;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* Docker Environment. Manages the flow of both docker containers and slots to a
* specified docker engine
*
* @author James Davies
*
*/
public class DockerEnvironment implements IDockerEnvironment {
private IFramework framework;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
/**
* DockerExecImpl. An object passed back used to monitor and control the exec process on a container.
*
* @author James Davies
*
*/
public class DockerExecImpl implements IDockerExec {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/**
* DockerImageImpl. Allows for the checking of images on registries and pulling of images to the docker engine.
*
* @author James Davies
*
*/
public class DockerImageImpl implements IDockerImage {
private final IFramework framework;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
/**
* Annotation to capture the other docker realted annotations from the test class
*
* @author James Davies
*
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.TYPE })
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
* @DockerEngine - where the containers will be running, set value in CPS (see properties)
* @DockerContainer - define what container is to be run, image names mus be defined, tag can be set
*
* @author James Davies
*
*/
@Component(service = { IManager.class })
public class DockerManagerImpl extends AbstractManager implements IDockerManagerSpi {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
* Docker RegistryImpl. Controls the location of where docker images can be
* pulled from
*
* @author James Davies
*
*/
public class DockerRegistryImpl {
private IFramework framework;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/**
* Resource management for the docker slots used to run docker containers
*
* @author James Davies
*
*/
@Component(service = { IResourceManagementProvider.class })
public class DockerResourceManagement implements IResourceManagementProvider {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/**
* Docker slot implemtnation to limit the number of concurrently running docker containers.
*
* @author James Davies
*
*/
public class DockerSlotImpl {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/**
* Docker resource monitor
*
* @author James Davies
*
*/
public class DockerSlotResourceMonitor implements Runnable {
private final IFramework framework;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
/**
* A implementation of the docker volumes that will be brought up on the engine
*
* @author James Davies
*
*/
public class DockerVolumeImpl implements IDockerVolume {
private DockerManagerImpl dockerManager;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
/**
* Represents a ConfigMap resource
*
* @author Michael Baylis
*
*
*/
public interface IConfigMap extends IResource {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
/**
* Represent a Deployment resource
*
* @author Michael Baylis
*
*
*/
public interface IDeployment extends IReplicaSet {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* This is the main interface to a provisioned Kubernetes namespace on an infrastructure cluster.
* Access to the Object is via the {@link KubernetesNamespace} annotation or the SPI.
*
* @author Michael Baylis
*
*
*/
public interface IKubernetesNamespace {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
/**
* Represents a PersistentVolumeClaim
*
* @author Michael Baylis
*
*
*/
public interface IPersistentVolumeClaim extends IResource {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
/**
* Holder for a Pod Log
*
* @author Michael Baylis
*
*
*/
public interface IPodLog {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/**
* Represents a resource that utilises ReplicatSets, ie Deployment and StatefulSet
*
* @author mikebyls
*
*
*/
public interface IReplicaSet extends IResource {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Abstracts a Kubernetes Resource, so that the test is not dependent of whatever Kubernetes client the
* Kubernetes Manager decides to use.
*
* @author Michael Baylis
*
*
*/
public interface IResource {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
/**
* Represents a Secret resource
*
* @author Michael Baylis
*
*
*/
public interface ISecret extends IResource {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
/**
* Represents a Service resource
*
* @author Michael Baylis
*
*
*/
public interface IService extends IResource {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
/**
* Represents a StatefulSet resource
*
* @author Michael Baylis
*
*
*/
public interface IStatefulSet extends IReplicaSet {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
/**
* Represents a Kubernetes Cluster
*
* @author Michael Baylis
*
*
*/
public class KubernetesClusterImpl {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
/**
* Annotation to identify manager controlled annotated fields
*
* @author Michael Baylis
*
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.TYPE })
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
/**
* The Kubernetes Manager implementation
*
* @author Michael Baylis
*
*
*/
@Component(service = { IManager.class })
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
*
* See example scripts in examples/ to see how to create a name space with the necessary rbac.
*
* @author Michael Baylis
*
*
*/
public class KubernetesNamespaceImpl implements IKubernetesNamespace {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/**
* Clean up namespaces when a run is finished with it.
*
* @author Michael Baylis
*
*
*/
public class KubernetesNamespaceResourceMonitor implements Runnable {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
* Initialise the Resource Management routines for the Kubernetes Manager
*
* @author Michael Baylis
*
*
*/
@Component(service= {IResourceManagementProvider.class})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* Kubernetes Manager CPS singleton
*
* @author Michael Baylis
*
*
*/
@Component(service = KubernetesPropertiesSingleton.class, immediate = true)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/**
* ConfigMap implementation
*
* @author Michael Baylis
*
*
*/
public class ConfigMapImpl implements IConfigMap {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
/**
* Deployment Implementation
*
* @author Michael Baylis
*
*
*/
public class DeploymentImpl extends ReplicaSetHolder implements IDeployment {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/**
* PersistentVolumeClaim implementation
*
* @author Michael Baylis
*
*
*/
public class PersistentVolumeClaimImpl implements IPersistentVolumeClaim {
Expand Down
Loading