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

com.github.paulosalonso.spel.builder.Bean Maven / Gradle / Ivy

The newest version!
package com.github.paulosalonso.spel.builder;

import com.github.paulosalonso.spel.builder.common.Instance;

public abstract class Bean extends Instance {

    public static Bean bean(String beanName) {
        return new Bean() {
            @Override
            protected String getName() {
                return String.format("@%s", beanName);
            }
        };
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy