org.locationtech.geowave.cli.geoserver.GeoServerOperationProvider 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 org.locationtech.geowave.core.cli.spi.CLIOperationProviderSpi;
public class GeoServerOperationProvider implements CLIOperationProviderSpi {
private static final Class>[] OPERATIONS =
new Class>[] {
GeoServerSection.class,
ConfigGeoServerCommand.class,
GeoServerAddLayerCommand.class,
GeoServerListWorkspacesCommand.class,
GeoServerAddWorkspaceCommand.class,
GeoServerRemoveWorkspaceCommand.class,
GeoServerListDatastoresCommand.class,
GeoServerGetDatastoreCommand.class,
GeoServerAddDatastoreCommand.class,
GeoServerRemoveDatastoreCommand.class,
GeoServerListFeatureLayersCommand.class,
GeoServerGetFeatureLayerCommand.class,
GeoServerAddFeatureLayerCommand.class,
GeoServerRemoveFeatureLayerCommand.class,
GeoServerListCoverageStoresCommand.class,
GeoServerGetCoverageStoreCommand.class,
GeoServerAddCoverageStoreCommand.class,
GeoServerRemoveCoverageStoreCommand.class,
GeoServerListCoveragesCommand.class,
GeoServerGetCoverageCommand.class,
GeoServerAddCoverageCommand.class,
GeoServerRemoveCoverageCommand.class,
GeoServerGetStoreAdapterCommand.class,
GeoServerAddStyleCommand.class,
GeoServerGetStyleCommand.class,
GeoServerListStylesCommand.class,
GeoServerRemoveStyleCommand.class,
GeoServerSetLayerStyleCommand.class,};
@Override
public Class>[] getOperations() {
return OPERATIONS;
}
}