Package org.springside.examples.miniservice.ws.result

Examples of org.springside.examples.miniservice.ws.result.AuthUserResult.buildResult()


    try {
      Assert.hasText(loginName, "登录名参数为空");
      Assert.hasText(password, "密码参数为空");
    } catch (IllegalArgumentException e) {
      logger.error(e.getMessage());
      return result.buildResult(WSResult.PARAMETER_ERROR, e.getMessage());
    }

    //认证
    try {
      if (accountManager.authenticate(loginName, password)) {
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.