summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Clayton <alex.clayton@isode.com>2016-02-19 15:10:29 (GMT)
committerAlex Clayton <alex.clayton@isode.com>2016-02-29 11:09:07 (GMT)
commit2de569d23468c94fdcf1adc336a580b053423fd7 (patch)
treef34fff273c65be6006c9de34c6903ad8db553118 /src/com/isode/stroke/base/RandomGenerator.java
parent3bfe54c141dd3fa20e391312a0a84c75731e2b2a (diff)
downloadstroke-2de569d23468c94fdcf1adc336a580b053423fd7.zip
stroke-2de569d23468c94fdcf1adc336a580b053423fd7.tar.bz2
Add sort method for ServiceQuery and add Tests
Add the sortResult static method to the DomainNameServiceQuery class. This required adding a few equivalances for C++ std library methods to the class. And add a test for the new method too. Test-information: All unit tests pass ok. Change-Id: Idee0888f7ea140d35a971414fc2fd3cbcdfc337f
Diffstat (limited to 'src/com/isode/stroke/base/RandomGenerator.java')
-rw-r--r--src/com/isode/stroke/base/RandomGenerator.java23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/com/isode/stroke/base/RandomGenerator.java b/src/com/isode/stroke/base/RandomGenerator.java
new file mode 100644
index 0000000..970bb98
--- /dev/null
+++ b/src/com/isode/stroke/base/RandomGenerator.java
@@ -0,0 +1,23 @@
+/* Copyright (c) 2016, Isode Limited, London, England.
+ * All rights reserved.
+ *
+ * Acquisition and use of this software and related materials for any
+ * purpose requires a written license agreement from Isode Limited,
+ * or a written license from an organisation licensed by Isode Limited
+ * to grant such a license.
+ *
+ */
+package com.isode.stroke.base;
+
+public interface RandomGenerator {
+
+ /**
+ * Generates a random integer between 0 and 'max',
+ * 'max' inclusive.
+ * @param max The maximum possible value
+ * to generate (inclusive)
+ * @return A random integer between 0 and 'max'
+ */
+ public int generateRandomInteger(int max);
+
+}