summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/isode/stroke/network/PlatformDomainNameQuery.java')
-rw-r--r--src/com/isode/stroke/network/PlatformDomainNameQuery.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/com/isode/stroke/network/PlatformDomainNameQuery.java b/src/com/isode/stroke/network/PlatformDomainNameQuery.java
new file mode 100644
index 0000000..ef2accb
--- /dev/null
+++ b/src/com/isode/stroke/network/PlatformDomainNameQuery.java
@@ -0,0 +1,29 @@
+/*
+ * Copyright (c) 2010 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.network;
+
+public class PlatformDomainNameQuery {
+
+ private PlatformDomainNameResolver resolver;
+
+ protected PlatformDomainNameResolver getResolver() {
+ return resolver;
+ }
+
+ public PlatformDomainNameQuery(PlatformDomainNameResolver resolver) {
+ this.resolver = resolver;
+ }
+
+ public void runBlocking() {
+
+ }
+} \ No newline at end of file