Example usage for org.springframework.beans.factory.config BeanDefinition SCOPE_PROTOTYPE

List of usage examples for org.springframework.beans.factory.config BeanDefinition SCOPE_PROTOTYPE

Introduction

In this page you can find the example usage for org.springframework.beans.factory.config BeanDefinition SCOPE_PROTOTYPE.

Prototype

String SCOPE_PROTOTYPE

To view the source code for org.springframework.beans.factory.config BeanDefinition SCOPE_PROTOTYPE.

Click Source Link

Document

Scope identifier for the standard prototype scope: "prototype".

Usage

From source file:io.github.moosbusch.lumpi.beans.spi.AbstractPivotBeanConfiguration.java

@Bean
@Lazy
@Scope(BeanDefinition.SCOPE_PROTOTYPE)
@Override
public ClipDecorator createClipDecorator() {
    return new ClipDecorator();
}

From source file:io.github.moosbusch.lumpi.beans.spi.AbstractPivotBeanConfiguration.java

@Bean
@Lazy
@Scope(BeanDefinition.SCOPE_PROTOTYPE)
@Override
public DropShadowDecorator createDropShadowDecorator() {
    return new DropShadowDecorator();
}

From source file:io.github.moosbusch.lumpi.beans.spi.AbstractPivotBeanConfiguration.java

@Bean
@Lazy
@Scope(BeanDefinition.SCOPE_PROTOTYPE)
@Override
public FadeDecorator createFadeDecorator() {
    return new FadeDecorator();
}

From source file:io.github.moosbusch.lumpi.beans.spi.AbstractPivotBeanConfiguration.java

@Bean
@Lazy
@Scope(BeanDefinition.SCOPE_PROTOTYPE)
@Override
public GrayscaleDecorator createGrayscaleDecorator() {
    return new GrayscaleDecorator();
}

From source file:io.github.moosbusch.lumpi.beans.spi.AbstractPivotBeanConfiguration.java

@Bean
@Lazy
@Scope(BeanDefinition.SCOPE_PROTOTYPE)
@Override
public OverlayDecorator createOverlayDecorator() {
    return new OverlayDecorator();
}

From source file:io.github.moosbusch.lumpi.beans.spi.AbstractPivotBeanConfiguration.java

@Bean
@Lazy
@Scope(BeanDefinition.SCOPE_PROTOTYPE)
@Override
public ReflectionDecorator createReflectionDecorator() {
    return new ReflectionDecorator();
}

From source file:io.github.moosbusch.lumpi.beans.spi.AbstractPivotBeanConfiguration.java

@Bean
@Lazy
@Scope(BeanDefinition.SCOPE_PROTOTYPE)
@Override
public RotationDecorator createRotationDecorator() {
    return new RotationDecorator();
}

From source file:io.github.moosbusch.lumpi.beans.spi.AbstractPivotBeanConfiguration.java

@Bean
@Lazy
@Scope(BeanDefinition.SCOPE_PROTOTYPE)
@Override
public SaturationDecorator createSaturationDecorator() {
    return new SaturationDecorator();
}

From source file:io.github.moosbusch.lumpi.beans.spi.AbstractPivotBeanConfiguration.java

@Bean
@Lazy
@Scope(BeanDefinition.SCOPE_PROTOTYPE)
@Override
public ScaleDecorator createScaleDecorator() {
    return new ScaleDecorator();
}

From source file:io.github.moosbusch.lumpi.beans.spi.AbstractPivotBeanConfiguration.java

@Bean
@Lazy
@Scope(BeanDefinition.SCOPE_PROTOTYPE)
@Override
public ShadeDecorator createShadeDecorator() {
    return new ShadeDecorator();
}