Example usage for org.springframework.beans.factory.config AbstractFactoryBean subclass-usage

List of usage examples for org.springframework.beans.factory.config AbstractFactoryBean subclass-usage

Introduction

In this page you can find the example usage for org.springframework.beans.factory.config AbstractFactoryBean subclass-usage.

Usage

From source file org.jasig.cas.util.PublicKeyFactoryBean.java

 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.

From source file com.quartzdesk.executor.common.spring.metadata.BuildPropertiesFactoryBean.java

/**
 * Spring factory bean that reads the build properties generated by the Maven
 * maven-buildmetadata-plugin plugin. Unless specified otherwise, this factory
 * reads the build properties resource from the {@code META-INF/build.properties}
 * location using the current thread's context class loader.
 * <p>

From source file com.dinstone.ut.faststub.NullFactoryBean.java

/**
 * The factory bean that create a null object.
 * 
 * @author dinstone
 * 
 */

From source file com.edmunds.common.configuration.dns.ConfigurationEntryReaderFactory.java

/**
 * Factory that creates an appropriate {@link ConfigurationEntryReader}. A {@link FileConfigurationEntryReader}
 * will be used if its properties file exists. Otherwise, we fall back to DNS configuration.
 *
 * @author Ryan Holmes
 */

From source file com.bskyb.cg.environments.utils.AbstractAutowiringFactoryBean.java

public abstract class AbstractAutowiringFactoryBean<T> extends AbstractFactoryBean<T>
        implements ApplicationContextAware {

    private ApplicationContext applicationContext;

    @Override

From source file com.github.xdcrafts.flower.spring.impl.AbstractNameAwareFactoryBean.java

/**
 * Abstract bean factory that aware of bean name.
 * @param <T> bean type
 */
public abstract class AbstractNameAwareFactoryBean<T> extends AbstractFactoryBean<T> implements BeanNameAware {

From source file com.quartzdesk.executor.common.spring.db.DataSourceScriptExecutorFactoryBean.java

/**
 * Spring factory bean that executes the specified set of SQL scripts on the
 * specified data source.
 */
public class DataSourceScriptExecutorFactoryBean extends AbstractFactoryBean<DataSource> {
    private static final Logger log = LoggerFactory.getLogger(DataSourceScriptExecutorFactoryBean.class);

From source file com.dinstone.ut.faststub.DateFactoryBean.java

/**
 * The factory bean that create a {@link java.util.Date} object by the specified
 * format string.
 * 
 * @author dinstone
 * 

From source file org.springsource.restbucks.support.RepositoryLinkMetadataFactoryBean.java

/**
 * @author Oliver Gierke
 */
public class RepositoryLinkMetadataFactoryBean extends AbstractFactoryBean<RepositoryLinkMetadataFactory> {

    /* 

From source file org.brixcms.rmiserver.workspacemanager.WorkspaceManagerFactoryBean.java

public class WorkspaceManagerFactoryBean extends AbstractFactoryBean {
    private RepositoryImpl repository;
    private String login;
    private String password;

    @Required