Package org.teiid.adminapi.VDB

Examples of org.teiid.adminapi.VDB.ConnectionType


  @Test
  public void testChangeConnectionType() throws Exception {
    VDB vdb = admin.getVDB("TransactionsRevisited", 1);
    assertNotNull(vdb); //$NON-NLS-1$
   
    ConnectionType ct = vdb.getConnectionType();
    assertEquals(ConnectionType.BY_VERSION, ct);
   
    admin.changeVDBConnectionType("TransactionsRevisited", 1, ConnectionType.ANY);
   
    vdb = admin.getVDB("TransactionsRevisited", 1);
View Full Code Here

TOP

Related Classes of org.teiid.adminapi.VDB.ConnectionType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.