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: bjoern@3980: public void createGaugeDischargeCurveArtifact( bjoern@3865: Collection collection, bjoern@3865: String locale, bjoern@3865: String river, bjoern@3865: Long gaugeref, bjoern@3865: AsyncCallback callback bjoern@3865: ); rrenkert@5503: 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 :