forked from tbs005/DataX
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
將master设为job,slaveContainer设为taskGroup,slave改为task
- Loading branch information
静行
authored and
chinan.hjc
committed
Dec 4, 2014
1 parent
9867dca
commit 7540a94
Showing
92 changed files
with
1,299 additions
and
1,299 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
common/src/main/java/com/alibaba/datax/common/plugin/AbstractJobPlugin.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package com.alibaba.datax.common.plugin; | ||
|
||
/** | ||
* Created by jingxing on 14-8-24. | ||
*/ | ||
public abstract class AbstractJobPlugin extends AbstractPlugin { | ||
/** | ||
* @return the jobPluginCollector | ||
*/ | ||
public JobPluginCollector getJobPluginCollector() { | ||
return jobPluginCollector; | ||
} | ||
|
||
/** | ||
* @param jobPluginCollector | ||
* the jobPluginCollector to set | ||
*/ | ||
public void setJobPluginCollector( | ||
JobPluginCollector jobPluginCollector) { | ||
this.jobPluginCollector = jobPluginCollector; | ||
} | ||
|
||
private JobPluginCollector jobPluginCollector; | ||
|
||
} |
25 changes: 0 additions & 25 deletions
25
common/src/main/java/com/alibaba/datax/common/plugin/AbstractMasterPlugin.java
This file was deleted.
Oops, something went wrong.
25 changes: 0 additions & 25 deletions
25
common/src/main/java/com/alibaba/datax/common/plugin/AbstractSlavePlugin.java
This file was deleted.
Oops, something went wrong.
25 changes: 25 additions & 0 deletions
25
common/src/main/java/com/alibaba/datax/common/plugin/AbstractTaskPlugin.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package com.alibaba.datax.common.plugin; | ||
|
||
/** | ||
* Created by jingxing on 14-8-24. | ||
*/ | ||
public abstract class AbstractTaskPlugin extends AbstractPlugin { | ||
/** | ||
* @return the taskPluginCollector | ||
*/ | ||
public TaskPluginCollector getTaskPluginCollector() { | ||
return taskPluginCollector; | ||
} | ||
|
||
/** | ||
* @param taskPluginCollector | ||
* the taskPluginCollector to set | ||
*/ | ||
public void setTaskPluginCollector( | ||
TaskPluginCollector taskPluginCollector) { | ||
this.taskPluginCollector = taskPluginCollector; | ||
} | ||
|
||
private TaskPluginCollector taskPluginCollector; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.