Retrieval of HTTPS Listener Configuration

Retrieves a list of HTTPS listener configurations.

Syntax

Collection<ServerComponentVO> getSecureHTTPListenerConfigurations() throws SUPAdminException;

Returns

If successful, returns an object of the specified type (can be null). If unsuccessful, returns SUPAdminException.

Examples

  • Retrieval
    supServerConf.refresh();
    for(ServerComponentVO scvo : supServerConf.getSecureHTTPListenerConfigurations()){
    System.out.println(scvo.getID());
    System.out.println(scvo.getType());
    System.out.println(scvo.getProperties());
    }