Examples of RegisterStruct


Examples of net.virtalabs.auth.mod.register.RegisterStruct

      if(action.equals("auth")){
        //auth
        return Auth.run(json);
      } else if(action.equals("register")){
        //register
        RegisterStruct modData = (RegisterStruct) StdRx.read(json,RegisterStruct.class);
        //TODO data checker
        return net.virtalabs.auth.mod.register.Register.run(modData);
      } else if(action.equals("checkToken")) {
        //checkToken
        CheckTokenStruct modData = (CheckTokenStruct) StdRx.read(json, CheckTokenStruct.class);
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.