diff --git a/proposal/myrmidon/src/java/org/apache/myrmidon/interfaces/configurer/TaskContextAdapter.java b/proposal/myrmidon/src/java/org/apache/myrmidon/interfaces/configurer/TaskContextAdapter.java new file mode 100644 index 000000000..43bffb623 --- /dev/null +++ b/proposal/myrmidon/src/java/org/apache/myrmidon/interfaces/configurer/TaskContextAdapter.java @@ -0,0 +1,43 @@ +/* + * Copyright (C) The Apache Software Foundation. All rights reserved. + * + * This software is published under the terms of the Apache Software License + * version 1.1, a copy of which has been included with this distribution in + * the LICENSE.txt file. + */ +package org.apache.myrmidon.interfaces.configurer; + +import org.apache.avalon.framework.context.Context; +import org.apache.avalon.framework.context.ContextException; +import org.apache.myrmidon.api.TaskContext; + +/** + * This class adpats the TaskContext API to the Avalon Context API. + * + * @author Peter Donald + * @version $Revision$ $Date$ + */ +public class TaskContextAdapter + implements Context +{ + private final TaskContext m_context; + + public TaskContextAdapter( final TaskContext context ) + { + m_context = context; + } + + public Object get( Object key ) + throws ContextException + { + final Object value = m_context.getProperty( key.toString() ); + if( null != value ) + { + return value; + } + else + { + throw new ContextException( "Missing key " + key ); + } + } +}