All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mule.runtime.config.api.dsl.ConfigurableInstanceFactory Maven / Gradle / Ivy

/*
 * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
 * The software in this package is published under the terms of the CPAL v1.0
 * license, a copy of which has been included with this distribution in the
 * LICENSE.txt file.
 */
package org.mule.runtime.config.api.dsl;

import org.mule.runtime.dsl.api.component.AttributeDefinition;

import java.util.Map;

/**
 * Factory for the instances created by the {@link ConfigurableObjectFactory}.
 * 

* Implementations of this interfaces must be injected into {@link ConfigurableObjectFactory} by using a * {@link AttributeDefinition.Builder#fromFixedValue(Object)} when declaring the * {@link org.mule.runtime.dsl.api.component.ComponentBuildingDefinition}. * * @param type of the object to be created * @since 4.0 */ public interface ConfigurableInstanceFactory { /** * Creates the object to be used at runtime. * * @param parameters the set of configuration parameters according to the {@link org.mule.runtime.dsl.api.component.ComponentBuildingDefinition} configuration. * @return the object to be used at runtime. */ T createInstance(Map parameters); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy