-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2383 from WeBankPartners/2378_dme_operation
2378 dme operation
- Loading branch information
Showing
22 changed files
with
2,115 additions
and
1,761 deletions.
There are no files selected for viewing
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
22 changes: 22 additions & 0 deletions
22
...-core/src/main/java/com/webank/wecube/platform/core/dto/plugin/ParamMetadataQueryDto.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,22 @@ | ||
package com.webank.wecube.platform.core.dto.plugin; | ||
|
||
public class ParamMetadataQueryDto { | ||
|
||
private String serviceId; | ||
private String paramName; | ||
public String getServiceId() { | ||
return serviceId; | ||
} | ||
public void setServiceId(String serviceId) { | ||
this.serviceId = serviceId; | ||
} | ||
public String getParamName() { | ||
return paramName; | ||
} | ||
public void setParamName(String paramName) { | ||
this.paramName = paramName; | ||
} | ||
|
||
|
||
|
||
} |
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
48 changes: 48 additions & 0 deletions
48
platform-core/src/main/java/com/webank/wecube/platform/core/service/dme/EntityQueryExpr.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,48 @@ | ||
package com.webank.wecube.platform.core.service.dme; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
public class EntityQueryExpr { | ||
|
||
private List<EntityQueryExprNodeInfo> exprNodeInfos = new ArrayList<>(); | ||
|
||
private String exprOperation; | ||
|
||
private String rawExpr; | ||
|
||
public List<EntityQueryExprNodeInfo> getExprNodeInfos() { | ||
return exprNodeInfos; | ||
} | ||
|
||
public void setExprNodeInfos(List<EntityQueryExprNodeInfo> exprNodeInfos) { | ||
this.exprNodeInfos = exprNodeInfos; | ||
} | ||
|
||
public String getExprOperation() { | ||
return exprOperation; | ||
} | ||
|
||
public void setExprOperation(String exprOperation) { | ||
this.exprOperation = exprOperation; | ||
} | ||
|
||
public String getRawExpr() { | ||
return rawExpr; | ||
} | ||
|
||
public void setRawExpr(String rawExpr) { | ||
this.rawExpr = rawExpr; | ||
} | ||
|
||
public EntityQueryExpr addExprNode(EntityQueryExprNodeInfo exprNodeInfo) { | ||
if(exprNodeInfo == null) { | ||
return this; | ||
} | ||
|
||
exprNodeInfos.add(exprNodeInfo); | ||
|
||
return this; | ||
} | ||
|
||
} |
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.