Package org.apache.stonehenge.stocktrader

Source Code of org.apache.stonehenge.stocktrader.UsernamePasswordValidator

/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements.  See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License.  You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.stonehenge.stocktrader;

import com.sun.xml.wss.impl.callback.PasswordValidationCallback;
import org.apache.stonehenge.stocktrader.dal.CustomerDAO;
import org.apache.stonehenge.stocktrader.dal.DAOException;
import org.apache.stonehenge.stocktrader.dal.DAOFactory;

public class UsernamePasswordValidator implements PasswordValidationCallback.PasswordValidator {
    public boolean validate(PasswordValidationCallback.Request request) throws
            PasswordValidationCallback.PasswordValidationException {
        PasswordValidationCallback.PlainTextPasswordRequest plainTextRequest =
                (PasswordValidationCallback.PlainTextPasswordRequest) request;
        try {
            CustomerDAO user = DAOFactory.getFacotry().getCustomerDAO();
            CustomAccountProfileBean profileBean = user.getAccountProfileData(plainTextRequest.getUsername());
            if (profileBean != null && profileBean.getPassword().equals(plainTextRequest.getPassword())) {
                return true;
            }
        } catch (DAOException e) {
            e.printStackTrace();
            return false;
        }
        return false;
    }
}
TOP

Related Classes of org.apache.stonehenge.stocktrader.UsernamePasswordValidator

TOP
Copyright © 2018 www.massapi.com. 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.