package edu.purdue.pivot.skwiki.client; import com.google.gwt.user.client.rpc.RemoteService; import com.google.gwt.user.client.rpc.RemoteServiceRelativePath; import edu.purdue.pivot.skwiki.shared.DataPack; /** * The client side stub for the RPC service. */ @RemoteServiceRelativePath("checkout") public interface CheckoutService extends RemoteService { DataPack checkout(DataPack name) throws IllegalArgumentException; }