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

org.mule.runtime.config.internal.factories.ExpirationPolicyObjectFactory 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.internal.factories;

import org.mule.runtime.api.time.TimeSupplier;
import org.mule.runtime.dsl.api.component.AbstractComponentFactory;
import org.mule.runtime.dsl.api.component.ObjectFactory;
import org.mule.runtime.extension.api.runtime.ExpirationPolicy;
import org.mule.runtime.core.internal.config.ImmutableExpirationPolicy;

import java.util.concurrent.TimeUnit;

import javax.inject.Inject;

/**
 * An {@link ObjectFactory} which produces instances of {@link ExpirationPolicy}
 *
 * @since 4.0
 */
public class ExpirationPolicyObjectFactory extends AbstractComponentFactory {

  @Inject
  private TimeSupplier timeSupplier;

  private Long maxIdleTime = null;
  private TimeUnit timeUnit = null;

  public void setMaxIdleTime(Long maxIdleTime) {
    this.maxIdleTime = maxIdleTime;
  }

  public void setTimeUnit(TimeUnit timeUnit) {
    this.timeUnit = timeUnit;
  }

  @Override
  public ExpirationPolicy doGetObject() throws Exception {
    if (maxIdleTime != null && timeUnit != null) {
      return new ImmutableExpirationPolicy(maxIdleTime, timeUnit, timeSupplier);
    }
    return ImmutableExpirationPolicy.getDefault(timeSupplier);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy