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

org.cryptacular.bean.FactoryBean Maven / Gradle / Ivy

There is a newer version: 6.2.20
Show newest version
/* See LICENSE for licensing and NOTICE for copyright. */
package org.cryptacular.bean;

/**
 * Factory bean strategy interface.
 *
 * @param    Type produced by factory.
 *
 * @author  Middleware Services
 */
public interface FactoryBean
{

  /** @return  New instance of the type handled by this factory. */
  T newInstance();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy