summaryrefslogtreecommitdiff
path: root/common/networkstackclient
diff options
context:
space:
mode:
authorPaul Trautrim <paultrautrim@google.com>2020-01-23 15:16:34 +0900
committerPaul Trautrim <paultrautrim@google.com>2020-01-29 14:10:12 +0900
commit2e797cd4d4dcf89773d9ac3f70d958255e8f0571 (patch)
tree84aa33e97f14a6f177a5efc85488d1a3175f0652 /common/networkstackclient
parent81291b99f522f0b35f5a44e6e8f5ffd4dd72523d (diff)
Add implementation of getInterfaceHash()
Exempt-From-Owner-Approval: cherry-pick from internal Bug: 136065010 Test: m Change-Id: Iaf682c850b7cf22980d6fb88d3d60e24c189b74c Merged-In: Iaf682c850b7cf22980d6fb88d3d60e24c189b74c
Diffstat (limited to 'common/networkstackclient')
-rw-r--r--common/networkstackclient/src/android/net/ipmemorystore/OnBlobRetrievedListener.java5
-rw-r--r--common/networkstackclient/src/android/net/ipmemorystore/OnL2KeyResponseListener.java5
-rw-r--r--common/networkstackclient/src/android/net/ipmemorystore/OnNetworkAttributesRetrievedListener.java5
-rw-r--r--common/networkstackclient/src/android/net/ipmemorystore/OnSameL3NetworkResponseListener.java5
-rw-r--r--common/networkstackclient/src/android/net/ipmemorystore/OnStatusListener.java5
5 files changed, 25 insertions, 0 deletions
diff --git a/common/networkstackclient/src/android/net/ipmemorystore/OnBlobRetrievedListener.java b/common/networkstackclient/src/android/net/ipmemorystore/OnBlobRetrievedListener.java
index a17483a..72b205d 100644
--- a/common/networkstackclient/src/android/net/ipmemorystore/OnBlobRetrievedListener.java
+++ b/common/networkstackclient/src/android/net/ipmemorystore/OnBlobRetrievedListener.java
@@ -45,6 +45,11 @@ public interface OnBlobRetrievedListener {
public int getInterfaceVersion() {
return this.VERSION;
}
+
+ @Override
+ public String getInterfaceHash() {
+ return this.HASH;
+ }
};
}
}
diff --git a/common/networkstackclient/src/android/net/ipmemorystore/OnL2KeyResponseListener.java b/common/networkstackclient/src/android/net/ipmemorystore/OnL2KeyResponseListener.java
index e608aec..b84d3f9 100644
--- a/common/networkstackclient/src/android/net/ipmemorystore/OnL2KeyResponseListener.java
+++ b/common/networkstackclient/src/android/net/ipmemorystore/OnL2KeyResponseListener.java
@@ -45,6 +45,11 @@ public interface OnL2KeyResponseListener {
public int getInterfaceVersion() {
return this.VERSION;
}
+
+ @Override
+ public String getInterfaceHash() {
+ return this.HASH;
+ }
};
}
}
diff --git a/common/networkstackclient/src/android/net/ipmemorystore/OnNetworkAttributesRetrievedListener.java b/common/networkstackclient/src/android/net/ipmemorystore/OnNetworkAttributesRetrievedListener.java
index 395ad98..2da7cba 100644
--- a/common/networkstackclient/src/android/net/ipmemorystore/OnNetworkAttributesRetrievedListener.java
+++ b/common/networkstackclient/src/android/net/ipmemorystore/OnNetworkAttributesRetrievedListener.java
@@ -49,6 +49,11 @@ public interface OnNetworkAttributesRetrievedListener {
public int getInterfaceVersion() {
return this.VERSION;
}
+
+ @Override
+ public String getInterfaceHash() {
+ return this.HASH;
+ }
};
}
}
diff --git a/common/networkstackclient/src/android/net/ipmemorystore/OnSameL3NetworkResponseListener.java b/common/networkstackclient/src/android/net/ipmemorystore/OnSameL3NetworkResponseListener.java
index 67f8da8..6f76c45 100644
--- a/common/networkstackclient/src/android/net/ipmemorystore/OnSameL3NetworkResponseListener.java
+++ b/common/networkstackclient/src/android/net/ipmemorystore/OnSameL3NetworkResponseListener.java
@@ -48,6 +48,11 @@ public interface OnSameL3NetworkResponseListener {
public int getInterfaceVersion() {
return this.VERSION;
}
+
+ @Override
+ public String getInterfaceHash() {
+ return this.HASH;
+ }
};
}
}
diff --git a/common/networkstackclient/src/android/net/ipmemorystore/OnStatusListener.java b/common/networkstackclient/src/android/net/ipmemorystore/OnStatusListener.java
index 4262efd..e5933d9 100644
--- a/common/networkstackclient/src/android/net/ipmemorystore/OnStatusListener.java
+++ b/common/networkstackclient/src/android/net/ipmemorystore/OnStatusListener.java
@@ -44,6 +44,11 @@ public interface OnStatusListener {
public int getInterfaceVersion() {
return this.VERSION;
}
+
+ @Override
+ public String getInterfaceHash() {
+ return this.HASH;
+ }
};
}
}