activeio-core/src/main/java/org/apache/activeio/xnet/ServicePool.java [111:150]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        next.init(props);
    }

    public void start() throws ServiceException {
        // Do our stuff
        
        // Then call the next guy
        next.start();
    }

    public void stop() throws ServiceException {
        // Do our stuff
        
        // Then call the next guy
        next.stop();
    }


    /**
     * Gets the name of the service.
     * Used for display purposes only
     */
    public String getName() {
        return next.getName();
    }

    /**
     * Gets the ip number that the
     * daemon is listening on.
     */
    public String getIP() {
        return next.getIP();
    }

    /**
     * Gets the port number that the
     * daemon is listening on.
     */
    public int getPort() {
        return next.getPort();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



activeio-core/src/main/java/org/apache/activeio/xnet/hba/ServiceAccessController.java [107:127]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        next.init(props);
    }

    public void start() throws ServiceException {
        next.start();
    }

    public void stop() throws ServiceException {
        next.stop();
    }

    public String getName() {
        return next.getName();
    }

    public String getIP() {
        return next.getIP();
    }

    public int getPort() {
        return next.getPort();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



