606162636465666768697071
*/ public String[] list() throws Exception { try { ConnectorMgmt con = new ConnectorMgmt(); return con.listConnectors(); } catch (Exception e) { throw ExceptionHandler.getException(e, this); }
747576777879808182838485
public ConnectorElement getProperty(String connector) throws Exception { try { ConnectorMgmt con = new ConnectorMgmt(); return con.viewConnectorProperty(connector); } catch (Exception e) { throw ExceptionHandler.getException(e, this); }
878889909192939495969798
public ConnectorElement[] listProperties() throws Exception { try { ConnectorMgmt con = new ConnectorMgmt(); return con.listProperties(); } catch (Exception e) { throw ExceptionHandler.getException(e, this);