/* * Copyright 2014 Effektif GmbH. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.effektif.workflow.test.serialization; import com.effektif.workflow.api.Configuration; import com.effektif.workflow.api.WorkflowEngine; import com.effektif.workflow.impl.WorkflowEngineImpl; import com.effektif.workflow.impl.json.JsonStreamMapper; import com.effektif.workflow.impl.memory.TestConfiguration; /** * @author Tom Baeyens */ public class SerializingWorkflowEngineConfiguration implements Configuration { WorkflowEngine workflowEngine; // TaskService taskService; Configuration configuration; public SerializingWorkflowEngineConfiguration() { TestConfiguration configuration = new TestConfiguration(); WorkflowEngineImpl workflowEngine = configuration.get(WorkflowEngineImpl.class); JsonStreamMapper jsonStreamMapper = configuration.get(JsonStreamMapper.class); this.workflowEngine = new SerializingWorkflowEngineImpl(workflowEngine, jsonStreamMapper); this.configuration = configuration; } public WorkflowEngine getWorkflowEngine() { return workflowEngine; } @Override public <T> T get(Class<T> type) { if (WorkflowEngine.class.isAssignableFrom(type)) { return (T) workflowEngine; } return configuration.get(type); } @Override public Object get(String name) { return configuration.get(name); } @Override public void set(Object bean, String name) { configuration.set(bean, name); } @Override public void set(Object bean) { configuration.set(bean); } @Override public void start() { configuration.start(); } @Override public void stop() { configuration.stop(); } }