Package org.dvdexchange.service

Source Code of org.dvdexchange.service.SimpleSignonService

package org.dvdexchange.service;

import org.dvdexchange.domain.User;

public class SimpleSignonService implements SignonService {
  public User getAccount(String username, String password) {
    User ret = null;
    if (username != null && username.equals(password)) {
      ret = new User();
      ret.setUserName(username);
    }
    return ret;
  }
}
TOP

Related Classes of org.dvdexchange.service.SimpleSignonService

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.