/* * 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.constellation.business.IServiceBusiness; import org.constellation.configuration.ConfigurationException; import org.constellation.process.AbstractCstlProcess; import org.geotoolkit.process.ProcessDescriptor; import org.geotoolkit.process.ProcessException; import org.opengis.parameter.ParameterValueGroup; import org.springframework.beans.factory.annotation.Autowired; import static org.constellation.process.service.StopServiceDescriptor.IDENTIFIER; import static org.constellation.process.service.StopServiceDescriptor.SERVICE_TYPE; import static org.geotoolkit.parameter.Parameters.value; /** * Stop service specified instance. If instance already stopped or didn't exist, a ProcessException will be throws. * * @author Quentin Boileau (Geomatys). */ public class StopService extends AbstractCstlProcess { @Autowired public IServiceBusiness serviceBusiness; public StopService(final ProcessDescriptor desc, final ParameterValueGroup parameter) { super(desc, parameter); } @Override protected void execute() throws ProcessException { final String service = value(SERVICE_TYPE, inputParameters); final String identifier = value(IDENTIFIER, inputParameters); try { serviceBusiness.stop(service, identifier); } catch (ConfigurationException ex) { throw new ProcessException(ex.getMessage(), this, ex); } } }