package com.wilutions.jsfs; /* * * THIS FILE HAS BEEN GENERATED BY class byps.gen.j.GenApiClass DO NOT MODIFY. */ import byps.*; import java.io.Serializable; /** */ @SuppressWarnings("all") public final class BRequest_DispatcherService_registerService extends BMethodRequest implements Serializable { public java.lang.String token; public FileSystemService service; public final static long serialVersionUID = 1833696176L; public int getRemoteId() { return 1153231042; } public void execute(BRemote __byps__remote, BAsyncResult<Object> __byps__asyncResult) throws Throwable { try { final DispatcherServiceAsync __byps__remoteT = (DispatcherServiceAsync)__byps__remote; BAsyncResultSendMethod<Object> __byps__outerResult = new BAsyncResultSendMethod<Object>(__byps__asyncResult, new BResult_19()); __byps__remoteT.registerService(token, service, __byps__outerResult); } catch (Throwable e) { __byps__asyncResult.setAsyncResult(null, e); } } public String toString() { StringBuilder s = new StringBuilder(); s.append("[DispatcherService.registerService("); s.append(token); s.append(",").append(service); s.append(")]"); return s.toString(); } }