Package com.tinkerpop.rexster.extension

Examples of com.tinkerpop.rexster.extension.ExtensionRequestParameter.description()


                for (Annotation annotation : parameterAnnotationSet) {
                    if (annotation instanceof ExtensionRequestParameter) {
                        final ExtensionRequestParameter extensionRequestParameter = (ExtensionRequestParameter) annotation;
                        queryStringParameters.put(new HashMap<String, String>() {{
                            put(QUERY_STRING_PARAMETER_NAME, extensionRequestParameter.name());
                            put(QUERY_STRING_PARAMETER_DESCRIPTION, extensionRequestParameter.description());
                        }});
                    }
                }
            }
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.