- private String mAccessToken;
-
-
- /**
- * Simple constructor. Success when the path in the server exists.
- *
- * @param path Path to append to the URL owned by the client instance.
- * @param context Android application context.
- * @param accessToken Access token for Bearer Authentication -> TODO: move to other place
- */
- public ExistenceCheckOperation(String path, Context context, String accessToken) {
- this(path, context, false);
- mAccessToken = accessToken;
- }