FileDocCategorySizeDatePackage
SasContext.javaAPI DocGlassfish v2 API31212Fri May 04 22:34:42 BST 2007com.sun.enterprise.tools.common.dd.ejb

SasContext

public class SasContext extends com.sun.enterprise.tools.common.dd.SunBaseBean
This generated bean class SasContext matches the schema element sas-context Generated on Wed Aug 13 10:43:33 PDT 2003

Fields Summary
static Vector
comparators
public static final String
CALLER_PROPAGATION
Constructors Summary
public SasContext()

	// NOI18N

	  
		this(Common.USE_DEFAULT_VALUES);
	
public SasContext(int options)

		super(comparators, new org.netbeans.modules.schema2beans.Version(1, 2, 0));
		// Properties (see root bean comments for the bean graph)
		this.createProperty("caller-propagation", 	// NOI18N
			CALLER_PROPAGATION, 
			Common.TYPE_1 | Common.TYPE_STRING | Common.TYPE_KEY, 
			String.class);
		this.initialize(options);
	
Methods Summary
public static voidaddComparator(org.netbeans.modules.schema2beans.BeanComparator c)

		comparators.add(c);
	
public voiddump(java.lang.StringBuffer str, java.lang.String indent)

		String s;
		Object o;
		org.netbeans.modules.schema2beans.BaseBean n;
		str.append(indent);
		str.append("CallerPropagation");	// NOI18N
		str.append(indent+"\t");	// NOI18N
		str.append("<");	// NOI18N
		s = this.getCallerPropagation();
		str.append((s==null?"null":s.trim()));	// NOI18N
		str.append(">\n");	// NOI18N
		this.dumpAttributes(CALLER_PROPAGATION, 0, str, indent);

	
public java.lang.StringdumpBeanNode()

		StringBuffer str = new StringBuffer();
		str.append("SasContext\n");	// NOI18N
		this.dump(str, "\n  ");	// NOI18N
		return str.toString();
	
public java.lang.StringgetCallerPropagation()

		return (String)this.getValue(CALLER_PROPAGATION);
	
voidinitialize(int options)

	
	
public static voidremoveComparator(org.netbeans.modules.schema2beans.BeanComparator c)

		comparators.remove(c);
	
public voidsetCallerPropagation(java.lang.String value)

		this.setValue(CALLER_PROPAGATION, value);
	
public voidvalidate()

		boolean restrictionFailure = false;
		// Validating property callerPropagation
		if (getCallerPropagation() == null) {
			throw new org.netbeans.modules.schema2beans.ValidateException("getCallerPropagation() == null", "callerPropagation", this);	// NOI18N
		}