Package org.amplafi.flow.flowproperty

Examples of org.amplafi.flow.flowproperty.FlowPropertyValuePersister


        // 2) should persistence be sequenced?
        Map<String, FlowPropertyDefinition> definitions = this.getPropertyDefinitions();
        if ( isNotEmpty(definitions)) {
            for (Map.Entry<String, FlowPropertyDefinition> entry : definitions.entrySet()) {
                FlowPropertyDefinition flowPropertyDefinition = entry.getValue();
                FlowPropertyValuePersister flowPropertyValuePersister = flowPropertyDefinition.getFlowPropertyValuePersister();
                if ( flowPropertyValuePersister != null) {
                    getFlowManagement().wireDependencies(flowPropertyValuePersister);
                    flowPropertyValuePersister.saveChanges(this, flowPropertyDefinition);
                }
            }
        }
    }
View Full Code Here

TOP

Related Classes of org.amplafi.flow.flowproperty.FlowPropertyValuePersister

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.