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 com.liferay.saml.opensaml.integration Show documentation
Show all versions of com.liferay.saml.opensaml.integration Show documentation
Liferay SAML OpenSAML Integration
/* 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();
}