/* * Constellation - An open source and standard compliant SDI * http://www.constellation-sdi.org * * Copyright 2014 Geomatys. * * 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.constellation.process.service; import org.apache.sis.parameter.ParameterBuilder; import org.apache.sis.util.iso.SimpleInternationalString; import org.constellation.dto.Details; import org.constellation.process.AbstractCstlProcess; import org.constellation.process.AbstractCstlProcessDescriptor; import org.constellation.process.ConstellationProcessFactory; import org.geotoolkit.utility.parameter.ExtendedParameterDescriptor; import org.opengis.parameter.ParameterDescriptor; import org.opengis.parameter.ParameterDescriptorGroup; import org.opengis.parameter.ParameterValueGroup; import org.opengis.util.InternationalString; import static org.constellation.process.service.ServiceProcessCommon.SUPPORTED_SERVICE_TYPE; /** * * @author Quentin Boileau (Geomatys). */ public class SetConfigServiceDescriptor extends AbstractCstlProcessDescriptor { public static final String NAME = "service.set_config"; public static final InternationalString ABSTRACT = new SimpleInternationalString("Update configuration of an existing map service (WMS, WMTS, WFS, WCS) in constellation."); private static final ParameterBuilder BUILDER = new ParameterBuilder(); public static final String SERVICE_TYPE_NAME = "service_type"; private static final String SERVICE_TYPE_REMARKS = "The type of the service WMS, WFS, WMTS, WCS."; private static final String[] SERVICE_TYPE_VALID_VALUES = SUPPORTED_SERVICE_TYPE.toArray(new String[SUPPORTED_SERVICE_TYPE.size()]); public static final ParameterDescriptor<String> SERVICE_TYPE = new ExtendedParameterDescriptor<>(SERVICE_TYPE_NAME, SERVICE_TYPE_REMARKS, String.class, SERVICE_TYPE_VALID_VALUES, null, null, null, null, true, null); public static final String IDENTIFIER_NAME = "identifier"; private static final String IDENTIFIER_REMARKS = "Identifier of the service instance."; public static final ParameterDescriptor<String> IDENTIFIER = BUILDER .addName(IDENTIFIER_NAME) .setRemarks(IDENTIFIER_REMARKS) .setRequired(true) .create(String.class, "default"); public static final String CONFIG_NAME = "configuration"; private static final String CONFIG_REMARKS = "LayerContext object use to update instance configuration. If not specified the instance will be configured from default LayerContext."; public static final ParameterDescriptor<Object> CONFIGURATION = BUILDER .addName(CONFIG_NAME) .setRemarks(CONFIG_REMARKS) .setRequired(false) .create(Object.class, null); public static final String SERVICE_METADATA_NAME = "serviceMetadata"; private static final String SERVICE_METADATA_REMARKS = "The service metadata to apply."; public static final ParameterDescriptor<Details> SERVICE_METADATA = BUILDER .addName(SERVICE_METADATA_NAME) .setRemarks(SERVICE_METADATA_REMARKS) .setRequired(false) .create(Details.class, null); /**Input parameters */ public static final ParameterDescriptorGroup INPUT_DESC = BUILDER.addName("InputParameters").setRequired(true) .createGroup(SERVICE_TYPE, IDENTIFIER, CONFIGURATION, SERVICE_METADATA); /**Output parameters */ public static final ParameterDescriptorGroup OUTPUT_DESC = BUILDER.addName("OutputParameters").setRequired(true) .createGroup(); /** * Public constructor use by the ServiceRegistry to find and instantiate all ProcessDescriptor. */ public SetConfigServiceDescriptor() { super(NAME, ConstellationProcessFactory.IDENTIFICATION, ABSTRACT, INPUT_DESC, OUTPUT_DESC); } @Override public AbstractCstlProcess buildProcess(final ParameterValueGroup input) { return new SetConfigService(this, input); } }