mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Remove author tag
This commit is contained in:
parent
f78d3096e0
commit
db1a01f89d
24 changed files with 0 additions and 80 deletions
|
|
@ -32,10 +32,6 @@ import org.markdown4j.Markdown4jProcessor;
|
|||
|
||||
/**
|
||||
* Markdown interpreter for Zeppelin.
|
||||
*
|
||||
* @author Leemoonsoo
|
||||
* @author anthonycorbacho
|
||||
*
|
||||
*/
|
||||
public class Markdown extends Interpreter {
|
||||
private Markdown4jProcessor md;
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -51,9 +51,6 @@ import scala.collection.Iterable;
|
|||
|
||||
/**
|
||||
* Spark context for zeppelin.
|
||||
*
|
||||
* @author Leemoonsoo
|
||||
*
|
||||
*/
|
||||
public class ZeppelinContext extends HashMap<String, Object> {
|
||||
private DependencyResolver dep;
|
||||
|
|
|
|||
|
|
@ -27,9 +27,6 @@ import org.sonatype.aether.repository.RemoteRepository;
|
|||
|
||||
/**
|
||||
* Manage mvn repository.
|
||||
*
|
||||
* @author anthonycorbacho
|
||||
*
|
||||
*/
|
||||
public class Booter {
|
||||
public static RepositorySystem newRepositorySystem() {
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -29,9 +29,6 @@ import org.sonatype.aether.spi.connector.RepositoryConnectorFactory;
|
|||
|
||||
/**
|
||||
* Get maven repository instance.
|
||||
*
|
||||
* @author anthonycorbacho
|
||||
*
|
||||
*/
|
||||
public class RepositorySystemFactory {
|
||||
public static RepositorySystem newRepositorySystem() {
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -26,9 +26,6 @@ import org.apache.zeppelin.display.Input.ParamOption;
|
|||
|
||||
/**
|
||||
* Settings of a form.
|
||||
*
|
||||
* @author Leemoonsoo
|
||||
*
|
||||
*/
|
||||
public class GUI implements Serializable {
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -21,9 +21,6 @@ import javax.xml.bind.annotation.XmlRootElement;
|
|||
|
||||
/**
|
||||
* Response wrapper.
|
||||
*
|
||||
* @author anthonycorbacho
|
||||
*
|
||||
*/
|
||||
@XmlRootElement
|
||||
public class NotebookResponse {
|
||||
|
|
|
|||
|
|
@ -31,8 +31,6 @@ import com.google.gson.GsonBuilder;
|
|||
/**
|
||||
* Json response builder.
|
||||
*
|
||||
* @author Leemoonsoo
|
||||
*
|
||||
* @param <T>
|
||||
*/
|
||||
public class JsonResponse<T> {
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -35,10 +35,6 @@ import static org.mockito.Mockito.*;
|
|||
|
||||
/**
|
||||
* BASIC Cors rest api tests
|
||||
*
|
||||
*
|
||||
* @author joelz
|
||||
*
|
||||
*/
|
||||
public class CorsFilterTest {
|
||||
|
||||
|
|
|
|||
|
|
@ -376,9 +376,6 @@ public class ZeppelinConfiguration extends XMLConfiguration {
|
|||
|
||||
/**
|
||||
* Wrapper class.
|
||||
*
|
||||
* @author Leemoonsoo
|
||||
*
|
||||
*/
|
||||
public static enum ConfVars {
|
||||
ZEPPELIN_HOME("zeppelin.home", "../"),
|
||||
|
|
|
|||
|
|
@ -21,9 +21,6 @@ import org.apache.zeppelin.scheduler.JobListener;
|
|||
|
||||
/**
|
||||
* TODO(moon): provide description.
|
||||
*
|
||||
* @author Leemoonsoo
|
||||
*
|
||||
*/
|
||||
public interface JobListenerFactory {
|
||||
public JobListener getParagraphJobListener(Note note);
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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',
|
||||
|
|
|
|||
|
|
@ -23,9 +23,6 @@ import java.util.List;
|
|||
|
||||
/**
|
||||
* TODO(moon) : add description.
|
||||
*
|
||||
* @author Leemoonsoo
|
||||
*
|
||||
*/
|
||||
public class Util {
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue