blob: 3c79c6c2e94eb2f3f1ececa0157b2644afdfa938 [file] [log] [blame]
package sample;
import org.oasisopen.sca.annotation.Remotable;
@Remotable
public interface ShareService {
String shareName(String firstName, String lastName);
int shareAge(int age);
Location shareLocation(Location location);
}