Package com.sun.jersey.server.spi.component

Examples of com.sun.jersey.server.spi.component.ResourceComponentDestructor.destroy()


        public void valueUnbound(HttpSessionBindingEvent hsbe) {
            for (Object o : values()) {
                try {
                    AbstractResource ar = IntrospectionModeller.createResource(o.getClass());
                    ResourceComponentDestructor rcd = new ResourceComponentDestructor(ar);
                    rcd.destroy(o);
                } catch (IllegalAccessException ex) {
                    throw new ContainerException("Unable to destroy resource", ex);
                } catch (InvocationTargetException ex) {
                    throw new ContainerException("Unable to destroy resource", ex);
                } catch (RuntimeException ex) {
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.