Skip to content

Commit

Permalink
TEIIDDES-3101
Browse files Browse the repository at this point in the history
 * admin.getSchema() was replaced with vdbManager.getSchema()
  • Loading branch information
blafond committed Sep 6, 2017
1 parent 0c3dafc commit 06f997f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -185,12 +185,12 @@ public void deployDynamicVdb( String deploymentName, InputStream inStream ) thro
ArgCheck.isNotNull(deploymentName, "deploymentName"); //$NON-NLS-1$
ArgCheck.isNotNull(inStream, "inStream"); //$NON-NLS-1$

this.vdbManager.deploy(deploymentName, inStream);
this.vdbManager.deployDynamicVdb(deploymentName, inStream);
}

@Override
public String getSchema(String vdbName, String vdbVersion, String modelName) throws Exception {
return admin.getSchema(vdbName, vdbVersion, modelName, null, null);
return vdbManager.getSchema(vdbName, vdbVersion, modelName, null, null);
}

@Override
Expand Down
Expand Up @@ -185,12 +185,12 @@ public void deployDynamicVdb( String deploymentName, InputStream inStream ) thro
ArgCheck.isNotNull(deploymentName, "deploymentName"); //$NON-NLS-1$
ArgCheck.isNotNull(inStream, "inStream"); //$NON-NLS-1$

this.vdbManager.deploy(deploymentName, inStream);
this.vdbManager.deployDynamicVdb(deploymentName, inStream);
}

@Override
public String getSchema(String vdbName, String vdbVersion, String modelName) throws Exception {
return admin.getSchema(vdbName, vdbVersion, modelName, null, null);
return vdbManager.getSchema(vdbName, vdbVersion, modelName, null, null);
}

@Override
Expand Down

0 comments on commit 06f997f

Please sign in to comment.