teichmann@5835: package org.dive4elements.river.client.client.services; ingo@905: ingo@905: import com.google.gwt.user.client.rpc.RemoteService; ingo@905: import com.google.gwt.user.client.rpc.RemoteServiceRelativePath; ingo@905: teichmann@5835: import org.dive4elements.river.client.shared.exceptions.ServerException; teichmann@5835: import org.dive4elements.river.client.shared.model.Artifact; teichmann@5835: import org.dive4elements.river.client.shared.model.Collection; teichmann@5835: import org.dive4elements.river.client.shared.model.Recommendation; ingo@905: felix@1442: /** @see LoadArtifactServiceImpl */ ingo@905: @RemoteServiceRelativePath("load-artifact") ingo@905: public interface LoadArtifactService extends RemoteService { ingo@905: felix@1442: /** @see LoadArtifactServiceImpl */ ingo@905: Artifact load( ingo@905: Collection parent, ingo@905: Recommendation recom, ingo@905: String factory, ingo@905: String locale) ingo@905: throws ServerException; felix@913: felix@1442: /** @see LoadArtifactServiceImpl */ felix@913: Artifact[] loadMany( felix@913: Collection parent, felix@913: Recommendation[] recom, felix@913: String factory, felix@913: String locale) felix@913: throws ServerException; ingo@905: } ingo@905: // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :