Class LocalUserService

java.lang.Object
com.google.appengine.tools.development.AbstractLocalRpcService
com.google.appengine.api.users.dev.LocalUserService
All Implemented Interfaces:
LocalRpcService

@AutoService(LocalRpcService.class) public final class LocalUserService extends AbstractLocalRpcService
creates URLs that point to LocalLoginServlet and LocalLogoutServlet when used within the Development AppServer environment. There is a known discrepancy between this implementation and the production implementation. The production version will throw a ApiProxy.ApplicationException with applicationError set to UserServicePb.UserServiceError.ErrorCode.REDIRECT_URL_TOO_LONG when the url passed to createLoginURL(com.google.appengine.tools.development.LocalRpcService.Status, com.google.apphosting.api.UserServicePb.CreateLoginURLRequest) or createLogoutURL(com.google.appengine.tools.development.LocalRpcService.Status, com.google.apphosting.api.UserServicePb.CreateLogoutURLRequest) is too long. This implementation does not perform this check and therefore never returns this error.