View Javadoc
1 package org.smartcomps.twister.engine.priv.expression; 2 3 import org.smartcomps.twister.engine.priv.expression.impl.BPELExpressionProcessorImpl; 4 5 /*** 6 * Factory for the ExpressionProcessor interface. 7 */ 8 public class ExpressionProcessorFactory { 9 10 private static ExpressionProcessor processor = null; 11 12 public static ExpressionProcessor getBPELExpressionProcessor() { 13 if (processor == null) { 14 processor = new BPELExpressionProcessorImpl(); 15 } 16 return processor; 17 } 18 }

This page was automatically generated by Maven