org.jboss.seam.contexts.Wrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jboss-seam Show documentation
Show all versions of jboss-seam Show documentation
Seam core module for Seam framework integrated with JSF2
package org.jboss.seam.contexts;
import java.io.Serializable;
interface Wrapper extends Serializable {
public Object getInstance();
public void activate();
public boolean passivate();
}