Is there a way to pass secure data(user data) between two or more security check in Java adapter of IBM MobileFirst Platform 8.0
Basically, I need my adapter resource to be called and produce response either user is logged in or not. If user is logged in I need to get user specific data, other wise need to fetch general information from back-end. For example contact information will be generic when user is not logged in but specific to user location if he/she is logged in(location of user will be fetched from back-end based on authentication data). So if I keep my adapter secure then the adapter will throw a 401 error if not logged in and if I keep my adapter unsecured then i am not able to get user specific information when the user is logged in.