BeanContextInfo.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.test.cts.interfaces; import java.io.*; /* * A value holder class for holding non-security-related bean context * information. */ public class BeanContextInfo implements Serializable { static final long serialVersionUID = 8756204029867398739L; public String remoteInterface; public String homeInterface; public Boolean isRollbackOnly; }
BeanContextInfo.java |