Remove author tag

This commit is contained in:
Mina Lee 2015-12-24 14:59:30 -08:00
parent f78d3096e0
commit db1a01f89d
24 changed files with 0 additions and 80 deletions

View file

@ -32,10 +32,6 @@ import org.markdown4j.Markdown4jProcessor;
/**
* Markdown interpreter for Zeppelin.
*
* @author Leemoonsoo
* @author anthonycorbacho
*
*/
public class Markdown extends Interpreter {
private Markdown4jProcessor md;

View file

@ -38,10 +38,6 @@ import org.slf4j.LoggerFactory;
/**
* Shell interpreter for Zeppelin.
*
* @author Leemoonsoo
* @author anthonycorbacho
*
*/
public class ShellInterpreter extends Interpreter {
Logger logger = LoggerFactory.getLogger(ShellInterpreter.class);

View file

@ -41,9 +41,6 @@ import org.slf4j.LoggerFactory;
/**
* Spark SQL interpreter for Zeppelin.
*
* @author Leemoonsoo
*
*/
public class SparkSqlInterpreter extends Interpreter {
Logger logger = LoggerFactory.getLogger(SparkSqlInterpreter.class);

View file

@ -51,9 +51,6 @@ import scala.collection.Iterable;
/**
* Spark context for zeppelin.
*
* @author Leemoonsoo
*
*/
public class ZeppelinContext extends HashMap<String, Object> {
private DependencyResolver dep;

View file

@ -27,9 +27,6 @@ import org.sonatype.aether.repository.RemoteRepository;
/**
* Manage mvn repository.
*
* @author anthonycorbacho
*
*/
public class Booter {
public static RepositorySystem newRepositorySystem() {

View file

@ -57,9 +57,6 @@ import scala.tools.nsc.util.MergedClassPath;
/**
* Deps resolver.
* Add new dependencies from mvn repo (at runetime) to Zeppelin.
*
* @author anthonycorbacho
*
*/
public class DependencyResolver {
Logger logger = LoggerFactory.getLogger(DependencyResolver.class);

View file

@ -24,9 +24,6 @@ import org.sonatype.aether.RepositoryEvent;
/**
* Simple listener that print log.
*
* @author anthonycorbacho
*
*/
public class RepositoryListener extends AbstractRepositoryListener {
Logger logger = LoggerFactory.getLogger(RepositoryListener.class);

View file

@ -29,9 +29,6 @@ import org.sonatype.aether.spi.connector.RepositoryConnectorFactory;
/**
* Get maven repository instance.
*
* @author anthonycorbacho
*
*/
public class RepositorySystemFactory {
public static RepositorySystem newRepositorySystem() {

View file

@ -32,9 +32,6 @@ import org.sonatype.aether.transfer.TransferResource;
/**
* Simple listener that show deps downloading progress.
*
* @author anthonycorbacho
*
*/
public class TransferListener extends AbstractTransferListener {
Logger logger = LoggerFactory.getLogger(TransferListener.class);

View file

@ -26,9 +26,6 @@ import org.apache.zeppelin.display.Input.ParamOption;
/**
* Settings of a form.
*
* @author Leemoonsoo
*
*/
public class GUI implements Serializable {

View file

@ -28,16 +28,10 @@ import java.util.regex.Pattern;
/**
* Input type.
*
* @author Leemoonsoo
*
*/
public class Input implements Serializable {
/**
* Parameters option.
*
* @author Leemoonsoo
*
*/
public static class ParamOption {
Object value;

View file

@ -19,9 +19,6 @@ package org.apache.zeppelin.scheduler;
/**
* TODO(moon) : add description.
*
* @author Leemoonsoo
*
*/
public interface JobListener {
public void onProgressUpdate(Job job, int progress);

View file

@ -22,9 +22,6 @@ import org.slf4j.LoggerFactory;
/**
* TODO(moon) : add description.
*
* @author Leemoonsoo
*
*/
public class JobProgressPoller extends Thread {
public static final long DEFAULT_INTERVAL_MSEC = 500;

View file

@ -30,9 +30,6 @@ import org.slf4j.LoggerFactory;
/**
* TODO(moon) : add description.
*
* @author Leemoonsoo
*
*/
public class SchedulerFactory implements SchedulerListener {
private final Logger logger = LoggerFactory.getLogger(SchedulerFactory.class);

View file

@ -19,9 +19,6 @@ package org.apache.zeppelin.scheduler;
/**
* TODO(moon) : add description.
*
* @author Leemoonsoo
*
*/
public interface SchedulerListener {
public void jobStarted(Scheduler scheduler, Job job);

View file

@ -21,9 +21,6 @@ import javax.xml.bind.annotation.XmlRootElement;
/**
* Response wrapper.
*
* @author anthonycorbacho
*
*/
@XmlRootElement
public class NotebookResponse {

View file

@ -31,8 +31,6 @@ import com.google.gson.GsonBuilder;
/**
* Json response builder.
*
* @author Leemoonsoo
*
* @param <T>
*/
public class JsonResponse<T> {

View file

@ -22,16 +22,10 @@ import java.util.Map;
/**
* Zeppelin websocker massage template class.
*
* @author Leemoonsoo
*
*/
public class Message {
/**
* Representation of event type.
*
* @author Leemoonsoo
*
*/
public static enum OP {
GET_HOME_NOTE, // [c-s] load note for home screen

View file

@ -35,10 +35,6 @@ import static org.mockito.Mockito.*;
/**
* BASIC Cors rest api tests
*
*
* @author joelz
*
*/
public class CorsFilterTest {

View file

@ -376,9 +376,6 @@ public class ZeppelinConfiguration extends XMLConfiguration {
/**
* Wrapper class.
*
* @author Leemoonsoo
*
*/
public static enum ConfVars {
ZEPPELIN_HOME("zeppelin.home", "../"),

View file

@ -21,9 +21,6 @@ import org.apache.zeppelin.scheduler.JobListener;
/**
* TODO(moon): provide description.
*
* @author Leemoonsoo
*
*/
public interface JobListenerFactory {
public JobListener getParagraphJobListener(Note note);

View file

@ -403,9 +403,6 @@ public class Notebook {
/**
* Cron task for the note.
*
* @author Leemoonsoo
*
*/
public static class CronJob implements org.quartz.Job {
public static Notebook notebook;

View file

@ -23,9 +23,6 @@ import java.util.List;
/**
* Generate Tiny ID.
*
* @author anthonycorbacho
*
*/
public class IdHashes {
public static final char[] DICTIONARY = new char[] {'1', '2', '3', '4', '5', '6', '7', '8', '9',

View file

@ -23,9 +23,6 @@ import java.util.List;
/**
* TODO(moon) : add description.
*
* @author Leemoonsoo
*
*/
public class Util {