Compare commits

...

3 Commits

Author SHA1 Message Date
ametivier
824784040c wip 2019-10-18 14:05:25 +02:00
ametivier
ecef199786 method added to get workingType 2019-10-18 14:02:56 +02:00
ametivier
22e743ae30 add workingType to know in what type is the BigDataNode working 2019-10-18 13:59:56 +02:00
2 changed files with 9 additions and 0 deletions

View File

@@ -34,6 +34,8 @@ public class BigDataNode extends AbstractNode implements IBigDataNode {
protected String outputType = null;
protected String inputType = null;
protected String workingType;
protected Map<String, List<IMetadataColumn>> keyList = new HashMap<String, List<IMetadataColumn>>();
@@ -361,4 +363,9 @@ public class BigDataNode extends AbstractNode implements IBigDataNode {
public void processDatasetConditions(){
// BigDataNode does not do anything related to Dataset, only anabled from SparkNode
}
@Override
public String getWorkingType(){
return this.workingType;
}
}

View File

@@ -142,4 +142,6 @@ public interface IBigDataNode extends INode {
*/
public void processDatasetConditions();
public String getWorkingType();
}