blob: c41b4f966addd876a46fa2135c1e45ca00b76af2 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more contributor license
* agreements. See the NOTICE file distributed with this work for additional information regarding
* copyright ownership. The ASF licenses this file to You 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.apache.geode.management.client;
import javax.net.ssl.HostnameVerifier;
import javax.net.ssl.SSLContext;
import org.springframework.http.client.ClientHttpRequestFactory;
import org.apache.geode.annotations.Experimental;
import org.apache.geode.management.api.ClusterManagementService;
import org.apache.geode.management.internal.PlainClusterManagementServiceBuilder;
import org.apache.geode.management.internal.SpringClusterManagemnetServiceBuilder;
/**
* this builder allows you to build a ClusterManagementService using host address or
* an HttpRequestFactory
*/
@Experimental
public class ClusterManagementServiceBuilder {
public static PlainBuilder buildWithHostAddress() {
return new PlainClusterManagementServiceBuilder();
}
public static HttpRequestFactoryBuilder buildWithRequestFactory() {
return new SpringClusterManagemnetServiceBuilder();
}
public interface Builder {
ClusterManagementService build();
}
public interface PlainBuilder extends Builder {
PlainBuilder setHostAddress(String host, int port);
PlainBuilder setSslContext(SSLContext context);
PlainBuilder setHostnameVerifier(HostnameVerifier hostnameVerifier);
PlainBuilder setCredentials(String username, String password);
}
public interface HttpRequestFactoryBuilder extends Builder {
HttpRequestFactoryBuilder setRequestFactory(ClientHttpRequestFactory httpRequestFactory);
}
}