/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2012, Johann Sorel * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; * version 2.1 of the License. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.geotoolkit.ignrm; import java.net.URL; import java.util.Collections; import org.geotoolkit.client.AbstractClientFactory; import org.apache.sis.metadata.iso.DefaultIdentifier; import org.apache.sis.metadata.iso.citation.DefaultCitation; import org.apache.sis.metadata.iso.identification.DefaultServiceIdentification; import org.apache.sis.parameter.ParameterBuilder; import org.geotoolkit.parameter.Parameters; import org.geotoolkit.security.ClientSecurity; import org.apache.sis.storage.DataStoreException; import org.geotoolkit.storage.DataType; import org.geotoolkit.storage.DefaultFactoryMetadata; import org.geotoolkit.storage.FactoryMetadata; import org.opengis.metadata.Identifier; import org.opengis.metadata.identification.Identification; import org.opengis.parameter.ParameterDescriptor; import org.opengis.parameter.ParameterDescriptorGroup; import org.opengis.parameter.ParameterNotFoundException; import org.opengis.parameter.ParameterValue; import org.opengis.parameter.ParameterValueGroup; /** * IGN Right Management Server factory. * * @author Johann Sorel (Puzzle-GIS) * @module */ public class IGNRMClientFactory extends AbstractClientFactory{ /** factory identification **/ public static final String NAME = "ignRightManagement"; public static final DefaultServiceIdentification IDENTIFICATION; static { IDENTIFICATION = new DefaultServiceIdentification(); final Identifier id = new DefaultIdentifier(NAME); final DefaultCitation citation = new DefaultCitation(NAME); citation.setIdentifiers(Collections.singleton(id)); IDENTIFICATION.setCitation(citation); } public static final ParameterDescriptor<String> IDENTIFIER = createFixedIdentifier(NAME); public static final ParameterDescriptorGroup PARAMETERS = new ParameterBuilder().addName("IGNRMParameters").createGroup(IDENTIFIER,URL,SECURITY,TIMEOUT); @Override public Identification getIdentification() { return IDENTIFICATION; } @Override public ParameterDescriptorGroup getParametersDescriptor() { return PARAMETERS; } @Override public CharSequence getDisplayName() { return Bundle.formatInternational(Bundle.Keys.serverTitle); } @Override public CharSequence getDescription() { return Bundle.formatInternational(Bundle.Keys.serverDescription); } @Override public FactoryMetadata getMetadata() { return new DefaultFactoryMetadata(DataType.OTHER, false, false, false); } @Override public IGNRMClient open(ParameterValueGroup params) throws DataStoreException { ensureCanProcess(params); final URL url = (URL)Parameters.getOrCreate(URL, params).getValue(); ClientSecurity security = null; try{ final ParameterValue val = params.parameter(SECURITY.getName().getCode()); security = (ClientSecurity) val.getValue(); }catch(ParameterNotFoundException ex){} return new IGNRMClient(url,security); } }