org.mule.runtime.config.spring.artifact.SpringArtifactContext Maven / Gradle / Ivy
                 Go to download
                
        
                    Show more of this group  Show more artifacts with this name
Show all versions of mule-module-spring-config
                Show all versions of mule-module-spring-config
        Mule Builder for use with Spring 2.X Namespace based XML configuration.
    
                
            /*
 * 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.spring.artifact;
import org.mule.runtime.api.metadata.MetadataService;
import org.mule.runtime.config.spring.MuleArtifactContext;
import org.mule.runtime.core.api.MuleContext;
import org.mule.runtime.core.api.connectivity.ConnectivityTestingService;
import org.mule.runtime.deployment.model.api.artifact.ArtifactContext;
import org.mule.runtime.module.artifact.Artifact;
/**
 * An artifact context contains all the information related to an {@link org.mule.runtime.module.artifact.Artifact} that contains
 * configuration.
 * 
 * This object holds the created {@link MuleContext} and the {@link MuleArtifactContext} which holds the information related to
 * the application configuration and resources.
 *
 * @since 4.0
 */
public class SpringArtifactContext implements ArtifactContext {
  private MuleArtifactContext muleArtifactContext;
  /**
   * Creates an {@link ArtifactContext}.
   *
   * @param muleArtifactContext the artifact context.
   */
  public SpringArtifactContext(MuleArtifactContext muleArtifactContext) {
    this.muleArtifactContext = muleArtifactContext;
  }
  /**
   * @return the artifact {@link MuleContext}
   */
  public MuleContext getMuleContext() {
    return this.muleArtifactContext.getMuleContext();
  }
  /**
   * {@inheritDoc}
   */
  public ConnectivityTestingService getConnectivityTestingService() {
    return muleArtifactContext.getConnectivityTestingService();
  }
  /**
   * @return the {@link MetadataService} for the current {@link Artifact}.
   * @see MetadataService
   */
  public MetadataService getMetadataService() {
    return muleArtifactContext.getMetadataService();
  }
}
    © 2015 - 2025 Weber Informatics LLC | Privacy Policy