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

Removed author tags #257

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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 @@
* This Class is a small OSGI bean that registers the CPS store as a ETCD
* cluster or quietly fails.
*
* @author James Davies
*
*/
@Component(service = { IConfigurationPropertyStoreRegistration.class })
public class Etcd3ConfigurationPropertyRegistration implements IConfigurationPropertyStoreRegistration {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
/**
* This class impletements the CPS for etcd using the JETCD client.
*
* @author James Davies
*
* @author Matthew Chivers
*/
public class Etcd3ConfigurationPropertyStore implements IConfigurationPropertyStore {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* This Class is a small OSGI bean that registers the Credentials store as a
* ETCD cluster or quietly fails.
*
* @author James Davies
*
*/
@Component(service = { ICredentialsStoreRegistration.class })
public class Etcd3CredentialsStoreRegistration implements ICredentialsStoreRegistration {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
* This class implements the DSS store for the use of etcd3 as the k-v store. It
* is interacting with the Jetcd Client offered from coreOs.
*
* @author James Davies
*
*/
public class Etcd3DynamicStatusStore implements IDynamicStatusStore {
private final Client client;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* This Class is a small OSGI bean that registers the DSS store as a ETCD
* cluster or quietly fails.
*
* @author James Davies
*
*/
@Component(service = { IDynamicStatusStoreRegistration.class })
public class Etcd3DynamicStatusStoreRegistration implements IDynamicStatusStoreRegistration {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/**
* The service to obtain an Etcd3 Client.
*
* @author Michael Baylis
*
*
*/
public interface IEtcd3ClientService {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@
* {@link IEtcd3Client#registerWatch(IEtcd3Listener, String)}
* </p>
*
* @author Michael Baylis
*
*
*/
public interface IEtcd3Listener {

/**
* The type of event that triggered the watch
*
* @author Michael Baylis
*
*
*/
public enum Event {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
*
* All Responses from a etcd cluster have been mocked using mockito.
*
* @author James Davies
*
*/
//@RunWith(MockitoJUnitRunner.class)
public class Etcd3DssTest {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/**
* Dummy Byte Channel for a null Result Archive Store
*
* @author Michael Baylis
*
*
*/
public class CouchdbRasReadByteChannel implements SeekableByteChannel {
Expand Down