org.cryptacular.bean.FactoryBean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cryptacular Show documentation
Show all versions of cryptacular Show documentation
The spectacular complement to the Bouncy Castle crypto API for Java.
/* 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