Remove featureless ZookeeperEndpoint

This commit is contained in:
Dave Syer
2016-04-26 18:47:38 +01:00
parent 3a0e9fb912
commit b3abb02e14
2 changed files with 0 additions and 51 deletions

View File

@@ -86,12 +86,6 @@ public class ZookeeperAutoConfiguration {
@Configuration
@ConditionalOnClass(Endpoint.class)
protected static class ZookeeperHealthConfig {
@Bean
@ConditionalOnMissingBean
public ZookeeperEndpoint zookeeperEndpoint() {
return new ZookeeperEndpoint();
}
@Bean
@ConditionalOnMissingBean
@ConditionalOnEnabledHealthIndicator("zookeeper")

View File

@@ -1,45 +0,0 @@
/*
* Copyright 2013-2015 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.cloud.zookeeper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.actuate.endpoint.AbstractEndpoint;
import org.springframework.boot.context.properties.ConfigurationProperties;
/**
* A Zookeeper {@link org.springframework.boot.actuate.endpoint.Endpoint} that returns
* {@link ZookeeperData}.
*
* @author Spencer Gibb
* @since 1.0.0
*/
@ConfigurationProperties(prefix = "endpoints.zookeeper", ignoreUnknownFields = false)
public class ZookeeperEndpoint extends AbstractEndpoint<ZookeeperEndpoint.ZookeeperData> {
@Autowired
public ZookeeperEndpoint() {
super("zookeeper", false, true);
}
@Override
public ZookeeperData invoke() {
return new ZookeeperData();
}
public static class ZookeeperData {
}
}