teichmann@5835: package org.dive4elements.river.client.client.services; ingo@526: ingo@526: import com.google.gwt.user.client.rpc.RemoteService; ingo@526: import com.google.gwt.user.client.rpc.RemoteServiceRelativePath; ingo@526: teichmann@5835: import org.dive4elements.river.client.shared.exceptions.ServerException; teichmann@5835: import org.dive4elements.river.client.shared.model.Collection; ingo@526: ingo@526: ingo@526: /** ingo@526: * @author Ingo Weinzierl ingo@526: */ ingo@526: @RemoteServiceRelativePath("collection-attribute") ingo@526: public interface CollectionAttributeService extends RemoteService { ingo@526: raimund@1425: Collection update(Collection collection, String locale) ingo@526: throws ServerException; ingo@526: } ingo@526: // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :