Search in sources :

Example 1 with WSExistsDataCluster

use of com.amalto.workbench.webservices.WSExistsDataCluster in project tmdm-studio-se by Talend.

the class DataClusterService method isExistDataCluster.

public boolean isExistDataCluster(TMDMService service, String dName) {
    WSExistsDataCluster wsExistsDataCluster = new WSExistsDataCluster(new WSDataClusterPK(dName));
    WSBoolean wsBoolean = service.existsDataCluster(wsExistsDataCluster);
    return wsBoolean.isTrue();
}
Also used : WSDataClusterPK(com.amalto.workbench.webservices.WSDataClusterPK) WSBoolean(com.amalto.workbench.webservices.WSBoolean) WSExistsDataCluster(com.amalto.workbench.webservices.WSExistsDataCluster)

Aggregations

WSBoolean (com.amalto.workbench.webservices.WSBoolean)1 WSDataClusterPK (com.amalto.workbench.webservices.WSDataClusterPK)1 WSExistsDataCluster (com.amalto.workbench.webservices.WSExistsDataCluster)1