java/app/app/src/main/java/com/example/app/components/UserDataFragment.java [50:57]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        Amplify.Auth.fetchAuthSession(
                result -> {
                    AWSCognitoAuthSession cognitoAuthSession = (AWSCognitoAuthSession) result;
                    switch(cognitoAuthSession.getIdentityId().getType()) {
                        case SUCCESS:


                            String accessToken = cognitoAuthSession.getUserPoolTokens().getValue().getIdToken();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



java/app/app/src/main/java/com/example/app/components/UserDataFragment.java [87:92]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                Amplify.Auth.fetchAuthSession(
                        result -> {
                            AWSCognitoAuthSession cognitoAuthSession = (AWSCognitoAuthSession) result;
                            switch(cognitoAuthSession.getIdentityId().getType()) {
                                case SUCCESS:
                                    String accessToken = cognitoAuthSession.getUserPoolTokens().getValue().getIdToken();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



