Package com.groupon.odo.plugin

Examples of com.groupon.odo.plugin.PluginArguments


                                // the server might have set a "Status" header.. so let's reset this too
                                httpServletResponse.setHeader(Constants.HEADER_STATUS,
                                        Integer.toString(methodInfo.getHttpCode()));
                            }
                        } else if (methodInfo.getOverrideVersion() == 2) {
                            PluginArguments pluginArgs = new PluginArguments(httpServletResponse, requestInfo.originalRequestInfo);

                            PluginManager.getInstance().callFunction(
                                    methodInfo.getClassName(), methodInfo.getMethodName(),
                                    pluginArgs, endpoint.getArguments());
                        }
View Full Code Here

TOP

Related Classes of com.groupon.odo.plugin.PluginArguments

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.