Skip to content

Commit

Permalink
Removed the @author tags from Java source files.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kirk True committed Mar 1, 2010
1 parent 50a6ecc commit 6af5d2f
Show file tree
Hide file tree
Showing 329 changed files with 24 additions and 362 deletions.
Expand Up @@ -46,9 +46,8 @@
* directory upon which this operation is being performed.
* </ol>
*
* @author Kirk True
*/

public interface ClusterCleaner extends RemoteOperation {

}
}
Expand Up @@ -59,7 +59,6 @@
* the test and server nodes in the test are all on the same network, using the
* internal host name.
*
* @author Kirk True
*
* @see ClusterNodeDescriptor
*/
Expand Down
Expand Up @@ -22,7 +22,6 @@
* ClusterNodeDescriptor is a simple POJO for storing the attributes of a node
* as needed by the cluster.xml cluster descriptor file.
*
* @author Kirk True
*
* @see ClusterGenerator
*/
Expand Down
Expand Up @@ -41,9 +41,8 @@
* if possible.
* </ol>
*
* @author Kirk True
*/

public interface ClusterStarter extends RemoteOperation {

}
}
Expand Up @@ -44,9 +44,8 @@
* if possible.
* </ol>
*
* @author Kirk True
*/

public interface ClusterStopper extends RemoteOperation {

}
}
3 changes: 1 addition & 2 deletions contrib/ec2-testing/src/java/voldemort/utils/Deployer.java
Expand Up @@ -40,9 +40,8 @@
* directory upon which this operation is being performed.
* </ol>
*
* @author Kirk True
*/

public interface Deployer extends RemoteOperation {

}
}
Expand Up @@ -27,7 +27,6 @@
* This API defines methods to create, delete, and retrieve a list of the remote
* hosts from EC2.
*
* @author Kirk True
*/

public interface Ec2Connection {
Expand Down Expand Up @@ -107,4 +106,4 @@ public List<HostNamePair> createInstances(String ami,

public void deleteInstancesByInstanceId(List<String> instanceIds) throws Exception;

}
}
Expand Up @@ -34,7 +34,6 @@
* names should be the same. That is, they should be identical and neither
* should be set to null.
*
* @author Kirk True
*/

public class HostNamePair {
Expand Down
Expand Up @@ -26,7 +26,6 @@
* Should the operation span multiple remote hosts, implementations should
* perform the operation in parallel with respect to the remote hosts.
*
* @author Kirk True
*/

public interface RemoteOperation {
Expand All @@ -41,4 +40,4 @@ public interface RemoteOperation {

public void execute() throws RemoteOperationException;

}
}
3 changes: 1 addition & 2 deletions contrib/ec2-testing/src/java/voldemort/utils/RemoteTest.java
Expand Up @@ -52,11 +52,10 @@
* possible.
* </ol>
*
* @author Kirk True
*
* @see RemoteTestResult
*/

public interface RemoteTest extends RemoteOperation {

}
}
Expand Up @@ -31,7 +31,6 @@
* The format for parameters is ${variableName}. These variables appear in a
* template and are substituted on demand.
*
* @author Kirk True
*/

public class CommandLineParameterizer {
Expand Down
Expand Up @@ -31,7 +31,6 @@
* UnixCommand. UnixCommand, in turn, uses the {@link java.lang.ProcessBuilder}
* class to build up the command to execute.
*
* @author Kirk True
*/

public class CommandLineParser {
Expand Down
Expand Up @@ -46,7 +46,6 @@
* line invocations are then placed (in arbitrary order) into a list that is
* returned to the caller.
*
* @author Kirk True
*
* @param <T> Return type for the operation, specific to the subclass
* implementation
Expand Down
Expand Up @@ -29,7 +29,6 @@
* progress, etc. So this mechanism should not be used for anything much more
* than logging or incidental state management.
*
* @author Kirk True
*/

public interface CommandOutputListener {
Expand Down
Expand Up @@ -20,7 +20,6 @@
* Abstract implementation of CommandOutputListener that allows chaining of
* calls to outputReceived.
*
* @author Kirk True
*/

public abstract class DelegatingCommandOutputListener implements CommandOutputListener {
Expand Down
Expand Up @@ -22,7 +22,6 @@
* ExitCodeCallable is an implementation of Callable to allow the UnixCommand to
* be executed in the context of a thread pool.
*
* @author Kirk True
*
* @param <T> Type of return object
*/
Expand Down
Expand Up @@ -22,7 +22,6 @@
* LoggingCommandOutputListener simply takes the output from the remote system
* and logs it using the logging API.
*
* @author Kirk True
*/

public class LoggingCommandOutputListener extends DelegatingCommandOutputListener {
Expand Down
Expand Up @@ -37,7 +37,6 @@
* going out to the shell to do this, but rsync is very flexible and can ride
* over SSH.
*
* @author Kirk True
*/

public class RsyncDeployer extends CommandLineRemoteOperation implements Deployer {
Expand Down Expand Up @@ -130,4 +129,4 @@ protected Callable<?> getCallable(UnixCommand command) {
return new ExitCodeCallable(command, commandOutputListener);
}

}
}
Expand Up @@ -33,7 +33,6 @@
* SshClusterCleaner is an implementation of ClusterCleaner that cleans a
* particular data directory.
*
* @author Kirk True
*/

public class SshClusterCleaner extends CommandLineRemoteOperation implements ClusterCleaner {
Expand Down Expand Up @@ -97,4 +96,4 @@ public void execute() throws RemoteOperationException {
if(logger.isInfoEnabled())
logger.info("Cleaning remote hosts complete");
}
}
}
Expand Up @@ -39,7 +39,6 @@
* We set the node ID specific to each server from the command line vs. storing
* it in the server.properties file.
*
* @author Kirk True
*/

public class SshClusterStarter extends CommandLineRemoteOperation implements ClusterStarter {
Expand Down
Expand Up @@ -34,7 +34,6 @@
* SshClusterStopper is an implementation of ClusterStopper that essentially
* just SSH's into all of the machines and runs voldemort-stop.sh.
*
* @author Kirk True
*/

public class SshClusterStopper extends CommandLineRemoteOperation implements ClusterStopper {
Expand Down
Expand Up @@ -35,7 +35,6 @@
* to voldemort.performance.RemoteTest (AKA voldemort-remote-test.sh) on all of
* the machines provided.
*
* @author Kirk True
*/

public class SshRemoteTest extends CommandLineRemoteOperation implements RemoteTest {
Expand Down
Expand Up @@ -20,7 +20,6 @@
* StdOutCommandOutputListener simply takes the output from the remote system
* and logs it using System.out/System.err.
*
* @author Kirk True
*/

public class StdOutCommandOutputListener extends DelegatingCommandOutputListener {
Expand Down
Expand Up @@ -37,7 +37,6 @@
* TypicaEc2Connection implements the Ec2Connection interface using the Typica
* library (http://code.google.com/p/typica/) for EC2 access.
*
* @author Kirk True
*/

public class TypicaEc2Connection implements Ec2Connection {
Expand Down Expand Up @@ -267,4 +266,4 @@ private HostNamePair getHostNamePair(Instance instance) {
return new HostNamePair(externalHostName, internalHostName);
}

}
}
Expand Up @@ -27,7 +27,6 @@
/**
* A wrapper for executing a UNIX command.
*
* @author Jay Kreps
*/

public class UnixCommand {
Expand Down
Expand Up @@ -60,7 +60,6 @@
* There are quite a few properties that are needed which are provided for these
* tests to run. Please see {@link Ec2RemoteTestConfig} for details.
*
* @author Kirk True
*/

public class Ec2FailureDetectorTest {
Expand Down Expand Up @@ -289,7 +288,6 @@ private String getRandomHostName() {
* </tr>
* </table>
*
* @author Kirk True
*/

private static class Ec2FailureDetectorTestConfig extends Ec2RemoteTestConfig {
Expand All @@ -315,4 +313,4 @@ protected List<String> getRequiredPropertyNames() {

}

}
}
Expand Up @@ -37,7 +37,6 @@

/**
*
* @author afeinberg
*/
public class Ec2GossipTest {
private static Ec2GossipTestConfig ec2GossipTestConfig;
Expand Down
Expand Up @@ -44,7 +44,6 @@
import voldemort.versioning.Versioned;

/**
* @author afeinberg
*/
public class Ec2RebalanceTest extends AbstractRebalanceTest {

Expand Down
Expand Up @@ -107,7 +107,6 @@
* </tr>
* </table>
*
* @author Kirk True
*/

public class Ec2RemoteTestConfig extends RemoteTestConfig {
Expand Down
2 changes: 0 additions & 2 deletions contrib/ec2-testing/test/voldemort/utils/Ec2SmokeTest.java
Expand Up @@ -46,7 +46,6 @@
* There are quite a few properties that are needed which are provided for these
* tests to run. Please see {@link Ec2SmokeTestConfig} for details.
*
* @author Kirk True
*/

public class Ec2SmokeTest {
Expand Down Expand Up @@ -152,7 +151,6 @@ public void testTemporaryNodeOffline() throws Exception {
* </tr>
* </table>
*
* @author Kirk True
*/

private static class Ec2SmokeTestConfig extends Ec2RemoteTestConfig {
Expand Down
Expand Up @@ -39,7 +39,6 @@
/**
* Build a test store from the generated data
*
* @author jay
*
*/
public class BuildTestStore extends Configured implements Tool {
Expand Down
Expand Up @@ -47,7 +47,6 @@
* data as values. This data is output as a SequenceFile where the key is the
* given key, and the value is the produced value.
*
* @author jay
*
*/
public class GenerateData extends Configured implements Tool {
Expand Down
Expand Up @@ -18,7 +18,6 @@
* size. This is necessary for good performance over a higher latency link such
* as between datacenters.
*
* @author jay
*
*/
class ConfigurableSocketFactory extends SocketFactory implements Configurable {
Expand Down Expand Up @@ -91,4 +90,4 @@ private Socket applySettings(Socket s) throws IOException {
return s;
}

}
}
Expand Up @@ -46,7 +46,6 @@
/**
* A fetcher that fetches the store files from HDFS
*
* @author jay
*
*/
public class HdfsFetcher implements FileFetcher {
Expand Down
Expand Up @@ -43,7 +43,6 @@
* The values given by makeKey and makeValue will then be serialized with the
* appropriate voldemort Serializer.
*
* @author bbansal, jay
*
*/
public abstract class AbstractHadoopStoreBuilderMapper<K, V> extends
Expand Down
Expand Up @@ -32,7 +32,6 @@
* A base class with basic configuration values shared by all the mapper,
* reducer, and partitioner
*
* @author jay
*
*/
public class AbstractStoreBuilderConfigurable {
Expand Down
Expand Up @@ -42,7 +42,6 @@
/**
* Builds a read-only voldemort store as a hadoop job from the given input data.
*
* @author bbansal, jay
*/
public class HadoopStoreBuilder {

Expand Down
Expand Up @@ -26,7 +26,6 @@
* A Partitioner that splits data so that all data for the same nodeId, chunkId
* combination ends up in the same reduce (and hence in the same store chunk)
*
* @author bbansal, jay
*
*/
public class HadoopStoreBuilderPartitioner extends AbstractStoreBuilderConfigurable implements
Expand Down
Expand Up @@ -38,7 +38,6 @@
/**
* Take key md5s and value bytes and build a read-only store from these values
*
* @author bbansal, jay
*
*/
public class HadoopStoreBuilderReducer extends AbstractStoreBuilderConfigurable implements
Expand Down

0 comments on commit 6af5d2f

Please sign in to comment.