Examples of removeMapping()


Examples of org.apache.catalina.Wrapper.removeMapping()

        synchronized (servletMappings) {
            name = (String) servletMappings.remove(pattern);
        }
        Wrapper wrapper = (Wrapper) findChild(name);
        if( wrapper != null ) {
            wrapper.removeMapping(pattern);
        }
        mapper.removeWrapper(pattern);
        fireContainerEvent("removeServletMapping", pattern);

    }
View Full Code Here

Examples of org.apache.felix.http.whiteboard.internal.manager.HttpContextManager.HttpContextHolder.removeMapping()

        h1.addMapping(sm);
        TestCase.assertSame(sampleContext, sm.getContext());
        TestCase.assertEquals(1, h1.getMappings().size());
        TestCase.assertTrue(h1.getMappings().contains(sm));

        h1.removeMapping(sm);
        TestCase.assertNull(sm.getContext());
        TestCase.assertTrue(h1.getMappings().isEmpty());
    }

    @Test
View Full Code Here

Examples of org.jitterbit.integration.client.ui.interchange.entity.transformation.tree.utils.Node.removeMapping()

            Node node = treeMapper.findTargetNode(toRemove.getTargetPath());
            if (node == null) {
                return;
            }
            node.setTargetMappedFlag(false);
            node.removeMapping();
            treeMapper.updateMapAreaTables(node.m_deName, null);
            try {
                node.updateMappingKits("");
            } catch (Exception e) {
                // TODO Auto-generated catch block
View Full Code Here

Examples of org.jitterbit.integration.data.entity.transformation.TransformationVariables.removeMapping()

            }
        }

        private void removeMappingFromProjectVariables(NodeMapping mapping) {
            TransformationVariables projectVariables = treeMapper.getDataElements();
            projectVariables.removeMapping(treeMapper.getTransformation(), mapping);
        }

        private void repaintMappingTree() {
            treeMapper.m_sourceTreeComponent.updateUnderlineNodes(null);
            treeMapper.m_targetTreeComponent.repaint();
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.