teichmann@5861: /* Copyright (C) 2011, 2012, 2013 by Bundesanstalt für Gewässerkunde teichmann@5861: * Software engineering by Intevation GmbH teichmann@5861: * teichmann@5993: * This file is Free Software under the GNU AGPL (>=v3) teichmann@5861: * and comes with ABSOLUTELY NO WARRANTY! Check out the teichmann@5993: * documentation coming with Dive4Elements River for details. teichmann@5861: */ teichmann@5861: teichmann@5835: package org.dive4elements.river.client.client.services; ingo@11: ingo@11: import com.google.gwt.user.client.rpc.AsyncCallback; ingo@11: teichmann@5835: import org.dive4elements.river.client.shared.model.Artifact; teichmann@5835: import org.dive4elements.river.client.shared.model.Collection; ingo@11: teichmann@5835: import org.dive4elements.river.client.shared.model.Recommendation; ingo@11: ingo@11: /** ingo@11: * This interface provides artifact specific services as CREATE, DESCRIBE, FEED, ingo@11: * ADVANCE and OUT. ingo@11: * ingo@11: * @author Ingo Weinzierl ingo@11: */ ingo@11: public interface ArtifactServiceAsync { ingo@11: ingo@14: public void create( sascha@843: String locale, sascha@843: String factory, sascha@843: Recommendation recommendation, ingo@229: AsyncCallback callback); bjoern@3865: rrenkert@5503: public void createSQRelationArtifact( rrenkert@5503: Collection collection, rrenkert@5503: String locale, rrenkert@5503: String river, rrenkert@5503: int measurementStation, rrenkert@5503: AsyncCallback callback rrenkert@5503: ); ingo@11: } ingo@11: // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :