Package org.apache.synapse.config

Examples of org.apache.synapse.config.Property


        // set dummy mediator to be called on fail
        validate.removeChild(0);
        validate.addChild(testMediator);

        Map props = new HashMap();
        Property prop = new Property();
        prop.setType(Property.DYNAMIC_TYPE);
        prop.setKey("file:./../../repository/conf/sample/resources/validate/validate.xsd");
        props.put("xsd-key-1", prop);


        // test validate mediator, with static enveope
        validate.mediate(TestUtils.getTestContext(VALID_ENVELOPE, props));
View Full Code Here


    public void testRegistry() throws Exception {
        Registry reg = new SimpleURLRegistry();
        reg.addConfigProperty("root", "file:./");
        reg.addConfigProperty("cachableDuration", "1500");
        Property prop = new Property();
        prop.setType(Property.DYNAMIC_TYPE);
        prop.setKey(FILE);

        // initial load of file from registry
        assertEquals(TEXT_1, reg.getProperty(prop).toString());

        // sleep 1 sec
View Full Code Here

TOP

Related Classes of org.apache.synapse.config.Property

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.