Add 'sdk/java-v2/' from commit '55f103e336ca9fb8bf1720d2ef4ee8dd4e221118'
[arvados.git] / sdk / java-v2 / src / main / java / org / arvados / client / api / client / static / git-logo.png
diff --git a/src/main/java/org/arvados/client/api/client/KeepServicesApiClient.java b/src/main/java/org/arvados/client/api/client/KeepServicesApiClient.java
deleted file mode 100644 (file)
index 81a9d6f..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- * Copyright (C) The Arvados Authors. All rights reserved.
- *
- * SPDX-License-Identifier: AGPL-3.0 OR Apache-2.0
- *
- */
-
-package org.arvados.client.api.client;
-
-import org.arvados.client.api.model.KeepService;
-import org.arvados.client.api.model.KeepServiceList;
-import org.arvados.client.config.ConfigProvider;
-import org.slf4j.Logger;
-
-public class KeepServicesApiClient extends BaseStandardApiClient<KeepService, KeepServiceList> {
-
-    private static final String RESOURCE = "keep_services";
-    private final Logger log = org.slf4j.LoggerFactory.getLogger(KeepServicesApiClient.class);
-
-    public KeepServicesApiClient(ConfigProvider config) {
-        super(config);
-    }
-
-    public KeepServiceList accessible() {
-        log.debug("Get list of accessible {}", getType().getSimpleName());
-        return callForList(getNoArgumentMethodRequest("accessible"));
-    }
-
-    @Override
-    String getResource() {
-        return RESOURCE;
-    }
-
-    @Override
-    Class<KeepService> getType() {
-        return KeepService.class;
-    }
-
-    @Override
-    Class<KeepServiceList> getListType() {
-        return KeepServiceList.class;
-    }
-}