Package logicLayer

Examples of logicLayer.FakeDB.signUp()


   
    private boolean signup(String username, String password)
    {
      boolean signUpStatus= true;
      FakeDB fakeDB = FakeDB.getDB();
      signUpStatus=fakeDB.signUp(username.substring(1), password.substring(1));
      return signUpStatus;
    }
  }
 
 
View Full Code Here


            toWrite+="1";//"username: " + username.substring(1) + " Bad";
        }
        else if(username.charAt(0)=='1' && password.charAt(0)=='1')
        {
          FakeDB fakeDB = FakeDB.getDB();
          signUpStatus=fakeDB.signUp(username.substring(1), password.substring(1));
          System.out.println("username: " + username + ". login status: "+loginStatus);
          if(signUpStatus==true)
            toWrite+="0";//"username: " + username.substring(1) + " OK";
          else
            toWrite+="1";//"username: " + username.substring(1) + " Bad";
View Full Code Here

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.