/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2008 - 2010, Geomatys * * 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; either * version 2.1 of the License, or (at your option) any later version. * * 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.sml.xml; import java.util.List; import org.geotoolkit.gml.xml.AbstractGML; /** * * @author Guilhem Legal */ public interface AbstractProcessMethod extends AbstractGML { List<? extends AbstractKeywords> getKeywords(); List<? extends AbstractIdentification> getIdentification(); List<? extends AbstractClassification> getClassification() ; AbstractValidTime getValidTime(); AbstractSecurityConstraint getSecurityConstraint(); List<? extends AbstractLegalConstraint> getLegalConstraint(); List<? extends AbstractCharacteristics> getCharacteristics(); List<? extends AbstractCapabilities> getCapabilities(); List<? extends AbstractContact> getContact(); List<? extends AbstractDocumentation> getDocumentation(); List<? extends AbstractHistory> getHistory(); AbstractRules getRules(); AbstractAlgorithm getAlgorithm(); List<? extends AbstractImplementation> getImplementation(); }