Home
last modified time | relevance | path

Searched refs:stringKey (Results 1 – 2 of 2) sorted by relevance

/test/vti/dashboard/src/main/java/com/android/vts/api/
DTestAcknowledgmentRestServlet.java134 String stringKey = request.getPathInfo(); in doDelete() local
135 if (stringKey == null) { in doDelete()
139 if (stringKey.startsWith("/")) { in doDelete()
140 stringKey = stringKey.substring(1); in doDelete()
142 Key key = KeyFactory.stringToKey(stringKey); in doDelete()
DUserFavoriteRestServlet.java196 String stringKey = request.getPathInfo(); in doDelete() local
197 if (stringKey == null) { in doDelete()
201 if (stringKey.startsWith("/")) { in doDelete()
202 stringKey = stringKey.substring(1); in doDelete()
204 datastore.delete(KeyFactory.stringToKey(stringKey)); in doDelete()