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();
}
Aggregations