aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/android/volley/toolbox/UrlRewriter.java
diff options
context:
space:
mode:
authorAnonymous <no-reply@google.com>2020-10-07 17:22:55 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2020-10-07 17:22:55 +0000
commit82c0ddbc31cffa3a4580bba39c970c914cbc01a7 (patch)
treeb9b7a6b9928136e83fda62aaa8b8887df88839b5 /src/main/java/com/android/volley/toolbox/UrlRewriter.java
parentac0ecd4e10f680027224ddb392ec87701007dfa4 (diff)
parenta0f072f60a3017d852d79ca73601723045071139 (diff)
downloadvolley-82c0ddbc31cffa3a4580bba39c970c914cbc01a7.tar.gz
Import of Volley from GitHub to AOSP. am: b6bd7aa39d am: 839f7a7fb2 am: a0f072f60a
Original change: https://android-review.googlesource.com/c/platform/external/volley/+/1452115 Change-Id: Ia09e4f359a6aa3580b18190e6a5617143df2e243
Diffstat (limited to 'src/main/java/com/android/volley/toolbox/UrlRewriter.java')
-rw-r--r--src/main/java/com/android/volley/toolbox/UrlRewriter.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/main/java/com/android/volley/toolbox/UrlRewriter.java b/src/main/java/com/android/volley/toolbox/UrlRewriter.java
new file mode 100644
index 0000000..8bbb770
--- /dev/null
+++ b/src/main/java/com/android/volley/toolbox/UrlRewriter.java
@@ -0,0 +1,29 @@
+/*
+ * Copyright (C) 2020 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.android.volley.toolbox;
+
+import androidx.annotation.Nullable;
+
+/** An interface for transforming URLs before use. */
+public interface UrlRewriter {
+ /**
+ * Returns a URL to use instead of the provided one, or null to indicate this URL should not be
+ * used at all.
+ */
+ @Nullable
+ String rewriteUrl(String originalUrl);
+}