Package lumis.portal.mobileapp
Class MobileAPIV10
- java.lang.Object
-
- lumis.portal.mobileapp.MobileAPIV10
-
@StableMinor(version="16.1", sinceVersion="10.0") @Path("/mobile/v1.0") public class MobileAPIV10 extends java.lang.Object
Mobile API version1.0
.- Since:
- 10.0.0
- Version:
- $Revision: 26156 $ $Date: 2024-01-13 10:26:46 -0300 (Sat, 13 Jan 2024) $
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
VERSION
-
Constructor Summary
Constructors Constructor Description MobileAPIV10()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.lang.String
getGCMProjectId()
Returns the GCM project identifier.protected java.lang.String
getLoginRedirectURL()
Returns the after-login redirect URL ornull
if there's none.java.lang.String
getWebsiteInfo()
Response
keepAlive()
Endpoint to keep user's session alive.Response
mobileLogin(@NotNull java.lang.String login, java.lang.String password)
Login operation targeted to mobile devices.
-
-
-
Field Detail
-
VERSION
public static final java.lang.String VERSION
- See Also:
- Constant Field Values
-
-
Method Detail
-
mobileLogin
@POST @Path("/authentication/login") @Produces("application/json") public Response mobileLogin(@FormParam("login") @NotNull @NotNull java.lang.String login, @FormParam("password") java.lang.String password) throws java.lang.Exception
Login operation targeted to mobile devices. Besides the login operation, returns the user config.- Parameters:
login
- the login.password
- the password.- Returns:
- the response, which will be one of:
- Response code 200 with the user config, if the login operation succeeded
- Response code 422, if the login operation failed
- Response code 500, if an error occurred
- Throws:
java.lang.Exception
- Since:
- 10.0.0
-
getLoginRedirectURL
protected java.lang.String getLoginRedirectURL()
Returns the after-login redirect URL ornull
if there's none.- Returns:
- the after-login redirect URL or
null
if there's none. - Since:
- 10.0.0
-
getGCMProjectId
protected java.lang.String getGCMProjectId() throws PortalException
Returns the GCM project identifier.- Returns:
- the GCM project identifier.
- Throws:
PortalException
- Since:
- 10.0.0
-
getWebsiteInfo
@Path("/website/info") @GET @Produces("application/json") public java.lang.String getWebsiteInfo() throws java.lang.Exception
- Throws:
java.lang.Exception
-
-