Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2e797cd4 authored by Paul Trautrim's avatar Paul Trautrim
Browse files

Add implementation of getInterfaceHash()

Exempt-From-Owner-Approval: cherry-pick from internal
Bug: 136065010
Test: m
Change-Id: Iaf682c850b7cf22980d6fb88d3d60e24c189b74c
Merged-In: Iaf682c850b7cf22980d6fb88d3d60e24c189b74c
parent 81291b99
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -45,6 +45,11 @@ public interface OnBlobRetrievedListener {
            public int getInterfaceVersion() {
                return this.VERSION;
            }

            @Override
            public String getInterfaceHash() {
                return this.HASH;
            }
        };
    }
}
+5 −0
Original line number Diff line number Diff line
@@ -45,6 +45,11 @@ public interface OnL2KeyResponseListener {
            public int getInterfaceVersion() {
                return this.VERSION;
            }

            @Override
            public String getInterfaceHash() {
                return this.HASH;
            }
        };
    }
}
+5 −0
Original line number Diff line number Diff line
@@ -49,6 +49,11 @@ public interface OnNetworkAttributesRetrievedListener {
            public int getInterfaceVersion() {
                return this.VERSION;
            }

            @Override
            public String getInterfaceHash() {
                return this.HASH;
            }
        };
    }
}
+5 −0
Original line number Diff line number Diff line
@@ -48,6 +48,11 @@ public interface OnSameL3NetworkResponseListener {
            public int getInterfaceVersion() {
                return this.VERSION;
            }

            @Override
            public String getInterfaceHash() {
                return this.HASH;
            }
        };
    }
}
+5 −0
Original line number Diff line number Diff line
@@ -44,6 +44,11 @@ public interface OnStatusListener {
            public int getInterfaceVersion() {
                return this.VERSION;
            }

            @Override
            public String getInterfaceHash() {
                return this.HASH;
            }
        };
    }
}
Loading