Package org.apache.cocoon.rest.controller.method

Examples of org.apache.cocoon.rest.controller.method.Delete


        }

        @Override
        public RestResponse execute(Object controller) throws Exception {
            if (controller instanceof Delete) {
                Delete delete = (Delete) controller;
                return delete.doDelete();
            }
            return super.execute(controller);
        }
View Full Code Here


    private class DeleteDelegate extends MethodDelegate {

        @Override
        public RestResponse execute(Object controller) throws Exception {
            if (controller instanceof Delete) {
                Delete delete = (Delete) controller;
                return delete.doDelete();
            }
            return super.execute(controller);
        }
View Full Code Here

TOP

Related Classes of org.apache.cocoon.rest.controller.method.Delete

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.