/* * 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.provider; import org.apache.sis.parameter.ParameterBuilder; import org.apache.sis.util.iso.SimpleInternationalString; import org.geotoolkit.process.Process; import org.geotoolkit.processing.AbstractProcessDescriptor; import org.opengis.parameter.ParameterDescriptor; import org.opengis.parameter.ParameterDescriptorGroup; import org.opengis.parameter.ParameterValueGroup; import org.opengis.util.InternationalString; /** * * @author Quentin Boileau (Geomatys). */ public class UpdateProviderDescriptor extends AbstractProcessDescriptor { public static final String NAME = "provider.update"; public static final InternationalString ABSTRACT = new SimpleInternationalString("Update a provider from constellation."); private static final ParameterBuilder BUILDER = new ParameterBuilder(); /* * Provider to update identifier */ public static final String PROVIDER_ID_NAME = "provider_id"; private static final String PROVIDER_ID_REMARKS = "Identifier of the provider to remove."; public static final ParameterDescriptor<String> PROVIDER_ID = BUILDER .addName(PROVIDER_ID_NAME) .setRemarks(PROVIDER_ID_REMARKS) .setRequired(true) .create(String.class, null); /* * Source use to update. */ public static final String SOURCE_NAME = "source"; private static final String SOURCE_REMARKS = "ParameterValueGroup use to update provider source."; public static final ParameterDescriptor<ParameterValueGroup> SOURCE = BUILDER .addName(SOURCE_NAME) .setRemarks(SOURCE_REMARKS) .setRequired(true) .create(ParameterValueGroup.class, null); /**Input parameters */ public static final ParameterDescriptorGroup INPUT_DESC = BUILDER.addName("InputParameters").setRequired(true) .createGroup(PROVIDER_ID, SOURCE); /**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 UpdateProviderDescriptor() { super(NAME, ProviderDescriptorConstant.IDENTIFICATION_CSTL, ABSTRACT, INPUT_DESC, OUTPUT_DESC); } @Override public Process createProcess(ParameterValueGroup input) { return new UpdateProvider(this, input); } }