move linked identities into loader structure

This commit is contained in:
Vincent Breitmoser
2017-05-29 17:06:00 +02:00
parent 8044586071
commit 7fc805d70c
13 changed files with 335 additions and 496 deletions

View File

@@ -284,6 +284,10 @@ public class KeychainContract {
return CONTENT_URI.buildUpon().appendPath(uri.getPathSegments().get(1)).appendPath(PATH_USER_IDS).build();
}
public static Uri buildLinkedIdsUri(long masterKeyId) {
return CONTENT_URI.buildUpon().appendPath(Long.toString(masterKeyId)).appendPath(PATH_LINKED_IDS).build();
}
public static Uri buildLinkedIdsUri(Uri uri) {
return CONTENT_URI.buildUpon().appendPath(uri.getPathSegments().get(1)).appendPath(PATH_LINKED_IDS).build();
}