Skip to content
Closed
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 @@ -32,10 +32,6 @@

/**
* Markdown interpreter for Zeppelin.
*
* @author Leemoonsoo
* @author anthonycorbacho
*
*/
public class Markdown extends Interpreter {
private Markdown4jProcessor md;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,6 @@

/**
* Shell interpreter for Zeppelin.
*
* @author Leemoonsoo
* @author anthonycorbacho
*
*/
public class ShellInterpreter extends Interpreter {
Logger logger = LoggerFactory.getLogger(ShellInterpreter.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,6 @@

/**
* Spark SQL interpreter for Zeppelin.
*
* @author Leemoonsoo
*
*/
public class SparkSqlInterpreter extends Interpreter {
Logger logger = LoggerFactory.getLogger(SparkSqlInterpreter.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,6 @@

/**
* Spark context for zeppelin.
*
* @author Leemoonsoo
*
*/
public class ZeppelinContext extends HashMap<String, Object> {
private DependencyResolver dep;
Expand Down
3 changes: 0 additions & 3 deletions spark/src/main/java/org/apache/zeppelin/spark/dep/Booter.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,6 @@

/**
* Manage mvn repository.
*
* @author anthonycorbacho
*
*/
public class Booter {
public static RepositorySystem newRepositorySystem() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,6 @@
/**
* Deps resolver.
* Add new dependencies from mvn repo (at runetime) to Zeppelin.
*
* @author anthonycorbacho
*
*/
public class DependencyResolver {
Logger logger = LoggerFactory.getLogger(DependencyResolver.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@

/**
* Simple listener that print log.
*
* @author anthonycorbacho
*
*/
public class RepositoryListener extends AbstractRepositoryListener {
Logger logger = LoggerFactory.getLogger(RepositoryListener.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@

/**
* Get maven repository instance.
*
* @author anthonycorbacho
*
*/
public class RepositorySystemFactory {
public static RepositorySystem newRepositorySystem() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@

/**
* Simple listener that show deps downloading progress.
*
* @author anthonycorbacho
*
*/
public class TransferListener extends AbstractTransferListener {
Logger logger = LoggerFactory.getLogger(TransferListener.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@

/**
* Settings of a form.
*
* @author Leemoonsoo
*
*/
public class GUI implements Serializable {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,10 @@

/**
* Input type.
*
* @author Leemoonsoo
*
*/
public class Input implements Serializable {
/**
* Parameters option.
*
* @author Leemoonsoo
*
*/
public static class ParamOption {
Object value;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@

/**
* TODO(moon) : add description.
*
* @author Leemoonsoo
*
*/
public interface JobListener {
public void onProgressUpdate(Job job, int progress);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@

/**
* TODO(moon) : add description.
*
* @author Leemoonsoo
*
*/
public class JobProgressPoller extends Thread {
public static final long DEFAULT_INTERVAL_MSEC = 500;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@

/**
* TODO(moon) : add description.
*
* @author Leemoonsoo
*
*/
public class SchedulerFactory implements SchedulerListener {
private final Logger logger = LoggerFactory.getLogger(SchedulerFactory.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@

/**
* TODO(moon) : add description.
*
* @author Leemoonsoo
*
*/
public interface SchedulerListener {
public void jobStarted(Scheduler scheduler, Job job);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@

/**
* Response wrapper.
*
* @author anthonycorbacho
*
*/
@XmlRootElement
public class NotebookResponse {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@
/**
* Json response builder.
*
* @author Leemoonsoo
*
* @param <T>
*/
public class JsonResponse<T> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,10 @@

/**
* 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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,6 @@

/**
* BASIC Cors rest api tests
*
*
* @author joelz
*
*/
public class CorsFilterTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -376,9 +376,6 @@ public List<String> getAllowedOrigins()

/**
* Wrapper class.
*
* @author Leemoonsoo
*
*/
public static enum ConfVars {
ZEPPELIN_HOME("zeppelin.home", "../"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@

/**
* TODO(moon): provide description.
*
* @author Leemoonsoo
*
*/
public interface JobListenerFactory {
public JobListener getParagraphJobListener(Note note);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -403,9 +403,6 @@ public void setJobListenerFactory(JobListenerFactory jobListenerFactory) {

/**
* Cron task for the note.
*
* @author Leemoonsoo
*
*/
public static class CronJob implements org.quartz.Job {
public static Notebook notebook;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@

/**
* Generate Tiny ID.
*
* @author anthonycorbacho
*
*/
public class IdHashes {
public static final char[] DICTIONARY = new char[] {'1', '2', '3', '4', '5', '6', '7', '8', '9',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@

/**
* TODO(moon) : add description.
*
* @author Leemoonsoo
*
*/
public class Util {

Expand Down