junaidp / acris

Automatically exported from code.google.com/p/acris
0 stars 0 forks source link

Async processor in eclipse #57

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Source:

@RemoteServiceDefinition
@RemoteServicePath(ModulesDefinition.SUBSCRIPTION_SERVICE)
public interface GWTSubscriptionServiceRemote extends RemoteService {

    SubscriptionDTO subscribe(String clientValidationURLWithParam, String email, Integer type,
            SubscriptionFormat format, String language) throws SubscriptionException;

    SubscriptionState unsubscribe(String clientValidationURLWithParam, String email, Integer type);

    SubscriptionState validateSubscription(String validationCode);
}

Generated result:
@RemoteServicePath("acris-server/acris-service/subscription")
@Generated(value = "sk.seges.acris.pap.service.AsyncServiceProcessor")
public interface GWTSubscriptionServiceRemoteAsync {

    void subscribe(String clientValidationURLWithParam, String email, Integer type, SubscriptionFormat format, String language, AsyncCallback<null> callback);

    void unsubscribe(String clientValidationURLWithParam, String email, Integer type, AsyncCallback<SubscriptionState> callback);

    void validateSubscription(String validationCode, AsyncCallback<SubscriptionState> callback);

}

>>>> AsyncCallback<null> callback <<<<

Original issue reported on code.google.com by bossobos...@gmail.com on 9 Nov 2011 at 2:35

GoogleCodeExporter commented 8 years ago

Original comment by nejakyus...@gmail.com on 9 Nov 2011 at 3:16