org.eclipse.stardust.common.config
Interface PropertyProvider


public interface PropertyProvider

PropertyProvider provides properties. In an spring context, properties are provided in the usual spring style. The CARNOT service beans are defined in carnot-spring-context.xml resource file. Additional key-value items should be added as a Properties object for the 'carnotProperties' field of the beans like in the example below:

 <bean id="carnotWorkflowService"
     class="org.eclipse.stardust.engine.api.spring.WorkflowServiceBean">
     ...
     <property name="carnotProperties">
         <props>
             <prop key="name">value</prop>
             ...
         </props>
     </property>
 </bean> 
 

Version:
$Revision$
Author:
rsauer

Method Summary
 Map<String,Object> getProperties()
           
 String getPropertyDisplayValue(String key)
           
 

Method Detail

getProperties

Map<String,Object> getProperties()

getPropertyDisplayValue

String getPropertyDisplayValue(String key)


Copyright © 2017 Eclipse Stardust. All Rights Reserved.