Package net.sourceforge.jradiusclient

Examples of net.sourceforge.jradiusclient.RadiusClient


    }
   
    protected User doLogon(String username, String password) throws UserDatabaseException, InvalidLoginCredentialsException, AccountLockedException {
       
        // set up RADIUS client to do authentication
        RadiusClient rc = null;
        try{
            rc = new RadiusClient(serverHostName, authPort, acctPort, sharedSecret);
        }catch(RadiusException rex){
            log.error("RadiusException: " + rex.getMessage());
        }catch(InvalidParameterException ivpex){
            log.error("Unable to create Radius Client due to invalid parameter! " +
                    "InvalidParameterException: " + ivpex.getMessage());
View Full Code Here

TOP

Related Classes of net.sourceforge.jradiusclient.RadiusClient

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.