summaryrefslogtreecommitdiffstats
path: root/zkfacade
diff options
context:
space:
mode:
authorHÃ¥kon Hallingstad <hakon@oath.com>2019-01-04 16:01:14 +0100
committerGitHub <noreply@github.com>2019-01-04 16:01:14 +0100
commitcd470d8ac8a58c943748f028a37d864507628e99 (patch)
tree7d7abbfc040f37b614a8d1c980d7f632597c51f6 /zkfacade
parent8ea7795c01e0830bb9b218cb60759ffc01551f56 (diff)
Revert "Enable ABI checking on modules with public APIs"
Diffstat (limited to 'zkfacade')
-rw-r--r--zkfacade/abi-spec.json110
-rw-r--r--zkfacade/pom.xml4
2 files changed, 0 insertions, 114 deletions
diff --git a/zkfacade/abi-spec.json b/zkfacade/abi-spec.json
deleted file mode 100644
index 5610fb2e9cf..00000000000
--- a/zkfacade/abi-spec.json
+++ /dev/null
@@ -1,110 +0,0 @@
-{
- "com.yahoo.vespa.curator.CompletionTimeoutException": {
- "superClass": "java.lang.RuntimeException",
- "interfaces": [],
- "attributes": [
- "public"
- ],
- "methods": [
- "public void <init>(java.lang.String)"
- ],
- "fields": []
- },
- "com.yahoo.vespa.curator.Curator$CompletionWaiter": {
- "superClass": "java.lang.Object",
- "interfaces": [],
- "attributes": [
- "public",
- "interface",
- "abstract"
- ],
- "methods": [
- "public abstract void awaitCompletion(java.time.Duration)",
- "public abstract void notifyCompletion()"
- ],
- "fields": []
- },
- "com.yahoo.vespa.curator.Curator$DirectoryCache": {
- "superClass": "java.lang.Object",
- "interfaces": [],
- "attributes": [
- "public",
- "interface",
- "abstract"
- ],
- "methods": [
- "public abstract void start()",
- "public abstract void addListener(org.apache.curator.framework.recipes.cache.PathChildrenCacheListener)",
- "public abstract java.util.List getCurrentData()",
- "public abstract void close()"
- ],
- "fields": []
- },
- "com.yahoo.vespa.curator.Curator$FileCache": {
- "superClass": "java.lang.Object",
- "interfaces": [],
- "attributes": [
- "public",
- "interface",
- "abstract"
- ],
- "methods": [
- "public abstract void start()",
- "public abstract void addListener(org.apache.curator.framework.recipes.cache.NodeCacheListener)",
- "public abstract org.apache.curator.framework.recipes.cache.ChildData getCurrentData()",
- "public abstract void close()"
- ],
- "fields": []
- },
- "com.yahoo.vespa.curator.Curator": {
- "superClass": "java.lang.Object",
- "interfaces": [
- "java.lang.AutoCloseable"
- ],
- "attributes": [
- "public"
- ],
- "methods": [
- "public static com.yahoo.vespa.curator.Curator create(java.lang.String)",
- "public void <init>(com.yahoo.cloud.config.ConfigserverConfig, com.yahoo.vespa.zookeeper.ZooKeeperServer)",
- "protected void <init>(java.lang.String, java.lang.String, java.util.function.Function)",
- "public java.lang.String connectionSpec()",
- "public org.apache.curator.framework.recipes.atomic.DistributedAtomicLong createAtomicCounter(java.lang.String)",
- "public org.apache.curator.framework.recipes.locks.InterProcessLock createMutex(java.lang.String)",
- "public com.yahoo.vespa.curator.Curator$CompletionWaiter getCompletionWaiter(com.yahoo.path.Path, int, java.lang.String)",
- "public com.yahoo.vespa.curator.Curator$CompletionWaiter createCompletionWaiter(com.yahoo.path.Path, java.lang.String, int, java.lang.String)",
- "public com.yahoo.vespa.curator.Curator$DirectoryCache createDirectoryCache(java.lang.String, boolean, boolean, java.util.concurrent.ExecutorService)",
- "public com.yahoo.vespa.curator.Curator$FileCache createFileCache(java.lang.String, boolean)",
- "public boolean exists(com.yahoo.path.Path)",
- "public void set(com.yahoo.path.Path, byte[])",
- "public void create(com.yahoo.path.Path)",
- "public varargs void createAtomically(com.yahoo.path.Path[])",
- "public void delete(com.yahoo.path.Path)",
- "public java.util.List getChildren(com.yahoo.path.Path)",
- "public java.util.Optional getData(com.yahoo.path.Path)",
- "public java.util.Optional getStat(com.yahoo.path.Path)",
- "public org.apache.curator.framework.CuratorFramework framework()",
- "public void close()",
- "public java.lang.String zooKeeperEnsembleConnectionSpec()",
- "public int zooKeeperEnsembleCount()"
- ],
- "fields": [
- "protected final org.apache.curator.RetryPolicy retryPolicy"
- ]
- },
- "com.yahoo.vespa.curator.Lock": {
- "superClass": "java.lang.Object",
- "interfaces": [
- "com.yahoo.transaction.Mutex"
- ],
- "attributes": [
- "public"
- ],
- "methods": [
- "public void <init>(java.lang.String, com.yahoo.vespa.curator.Curator)",
- "public void acquire(java.time.Duration)",
- "public void close()"
- ],
- "fields": []
- }
-} \ No newline at end of file
diff --git a/zkfacade/pom.xml b/zkfacade/pom.xml
index 822335880c1..0519ac2d14d 100644
--- a/zkfacade/pom.xml
+++ b/zkfacade/pom.xml
@@ -126,10 +126,6 @@
</execution>
</executions>
</plugin>
- <plugin>
- <groupId>com.yahoo.vespa</groupId>
- <artifactId>abi-check-plugin</artifactId>
- </plugin>
</plugins>
</build>
</project>