org.locationtech.geowave.cli.geoserver.GeoServerSSLConfigurationOptions Maven / Gradle / Ivy
Show all versions of geowave-cli-geoserver Show documentation
/**
* Copyright (c) 2013-2019 Contributors to the Eclipse Foundation
*
* See the NOTICE file distributed with this work for additional information regarding copyright
* ownership. All rights reserved. This program and the accompanying materials are made available
* under the terms of the Apache License, Version 2.0 which accompanies this distribution and is
* available at http://www.apache.org/licenses/LICENSE-2.0.txt
*/
/** */
package org.locationtech.geowave.cli.geoserver;
import com.beust.jcommander.Parameters;
/** */
@Parameters(
commandDescription = "SSL Configuration Options that can be specified if connecting to geoserver over SSL")
public class GeoServerSSLConfigurationOptions extends StoreSSLConfigurationOptions {
public GeoServerSSLConfigurationOptions() {
super("geoserver");
}
}