581582583584585586587588
return type; } private Method getMethod(Service s, OperationInfo op) { MethodDispatcher md = (MethodDispatcher)s.get(MethodDispatcher.class.getName()); SimpleMethodDispatcher smd = (SimpleMethodDispatcher)md; return smd.getPrimaryMethod(op); }
644645646647648649650651
// we can exclude the simple frontend from the aegis databinding // dependency as long as this null check is here. if (md == null) { return null; } SimpleMethodDispatcher smd = (SimpleMethodDispatcher)md; return smd != null ? smd.getPrimaryMethod(op) : null; }
583584585586587588589590
466467468469470471472473
635636637638639640641642
641642643644645646647648
643644645646647648649650
// we can exclude the simple frontend from the aegis databinding // dependency as long as this null check is here. if (md == null) { return null; } SimpleMethodDispatcher smd = (SimpleMethodDispatcher)md; return smd.getPrimaryMethod(op); }
410411412413414415416417
356357358359360361362363
658659660661662663664665