summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/isode/stroke/elements/HashElement.java')
-rw-r--r--src/com/isode/stroke/elements/HashElement.java61
1 files changed, 61 insertions, 0 deletions
diff --git a/src/com/isode/stroke/elements/HashElement.java b/src/com/isode/stroke/elements/HashElement.java
new file mode 100644
index 0000000..8c85c53
--- /dev/null
+++ b/src/com/isode/stroke/elements/HashElement.java
@@ -0,0 +1,61 @@
+/*
+ * Copyright (c) 2014 Isode Limited.
+ * All rights reserved.
+ * See the COPYING file for more information.
+ */
+/*
+ * Copyright (c) 2015 Tarun Gupta.
+ * Licensed under the simplified BSD license.
+ * See Documentation/Licenses/BSD-simplified.txt for more information.
+ */
+
+package com.isode.stroke.elements;
+
+import com.isode.stroke.base.NotNull;
+import com.isode.stroke.base.ByteArray;
+
+public class HashElement {
+
+ private String algorithm_ = "";
+ private ByteArray hash_;
+
+ public HashElement(String algorithm, ByteArray hash) {
+ algorithm_ = algorithm;
+ hash_ = hash;
+ }
+
+ /**
+ * @param algorithm, Not Null.
+ * @param hash, Not Null.
+ */
+ public void setHashValue(String algorithm, ByteArray hash) {
+ NotNull.exceptIfNull(algorithm, "algorithm");
+ NotNull.exceptIfNull(hash, "hash");
+ algorithm_ = algorithm;
+ hash_ = hash;
+ }
+
+ /**
+ * @return algorithm, Not Null.
+ */
+ public String getAlgorithm() {
+ return algorithm_;
+ }
+
+ /**
+ * @return hash, Not Null.
+ */
+ public ByteArray getHashValue() {
+ return hash_;
+ }
+
+ public boolean equals(Object other) {
+
+ if ((!(other instanceof HashElement)) || other == null) {
+ return false;
+ }
+
+ HashElement guest = (HashElement) other;
+ return (algorithm_.equals(guest.algorithm_)) && (hash_.equals(guest.hash_));
+ }
+} \ No newline at end of file