Class StitchAppRoutes
- java.lang.Object
-
- com.mongodb.stitch.core.internal.net.StitchAppRoutes
-
public final class StitchAppRoutes extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classStitchAppRoutes.RouteParts
-
Constructor Summary
Constructors Constructor Description StitchAppRoutes(String clientAppId)Constructs the app specific routes to access an app based on the client app id.
-
Method Summary
Modifier and Type Method Description StitchAppAuthRoutesgetAuthRoutes()Returns the auth routes for this app.StitchPushRoutesgetPushRoutes()Returns the push routes for this app.StitchServiceRoutesgetServiceRoutes()Returns the service routes for this app.
-
-
-
Constructor Detail
-
StitchAppRoutes
public StitchAppRoutes(String clientAppId)
Constructs the app specific routes to access an app based on the client app id.- Parameters:
clientAppId- the client app id of the app that will be used to communicate with Stitch.
-
-
Method Detail
-
getAuthRoutes
public StitchAppAuthRoutes getAuthRoutes()
Returns the auth routes for this app.- Returns:
- the auth routes for this app.
-
getServiceRoutes
public StitchServiceRoutes getServiceRoutes()
Returns the service routes for this app.- Returns:
- the service routes for this app.
-
getPushRoutes
public StitchPushRoutes getPushRoutes()
Returns the push routes for this app.- Returns:
- the push routes for this app.
-
-