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

com.lframework.starter.web.components.locker.LockerConfiguration Maven / Gradle / Ivy

package com.lframework.starter.web.components.locker;

import com.lframework.common.locker.LockBuilder;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class LockerConfiguration {

  @Bean
  @ConditionalOnMissingBean(LockBuilder.class)
  public LockBuilder getLockBuilder() {

    return new DefaultLockBuilder();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy