Searched defs:mechanismId (Results 1 - 3 of 3) sorted by relevance

/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/storage/
H A DStorageSystem.java58 * @param mechanismId The id of the mechanism to update.
61 boolean updateMechanism(long mechanismId, Mechanism mechanism); argument
72 * @param mechanismId The id of the mechanism to delete.
74 boolean deleteMechanism(long mechanismId); argument
H A DIdentityDatabase.java180 public boolean updateMechanism(long mechanismId, Mechanism mechanism) { argument
184 String[] selectionArgs = { Long.toString(mechanismId) };
202 public boolean deleteMechanism(long mechanismId) { argument
203 return database.delete(MECHANISM_TABLE_NAME, "rowId = " + mechanismId, null) == 1;
H A DSharedPreferencesStorage.java221 public boolean updateMechanism(long mechanismId, Mechanism mechanism) { argument
231 public boolean deleteMechanism(long mechanismId) { argument
232 deleteEntry((int) mechanismId);

Completed in 40 milliseconds