FileDocCategorySizeDatePackage
J2EEApplicationConfigImpl.javaAPI DocGlassfish v2 API2941Fri May 04 22:23:18 BST 2007com.sun.enterprise.management.config

J2EEApplicationConfigImpl

public final class J2EEApplicationConfigImpl extends DeployedItemConfigBase

Fields Summary
Constructors Summary
public J2EEApplicationConfigImpl(com.sun.enterprise.management.support.Delegate delegate)

		super( delegate );
	
Methods Summary
public booleangetJavaWebStartEnabled()
A troublesome Attribute which may not exist, hence we need to supply a default value. If it doesn't exist, the Delegate will return null.

	    final Object value = delegateGetAttributeNoThrow( "JavaWebStartEnabled" );
	    return Boolean.parseBoolean( "" + value );