FileDocCategorySizeDatePackage
J2EEDeployedObjectImplBase.javaAPI DocGlassfish v2 API3894Fri May 04 22:23:30 BST 2007com.sun.enterprise.management.j2ee

J2EEDeployedObjectImplBase

public class J2EEDeployedObjectImplBase extends J2EEManagedObjectImplBase

Fields Summary
private static final Set
DONT_MAP_SET
Constructors Summary
public J2EEDeployedObjectImplBase(com.sun.enterprise.management.support.Delegate delegate)

		super( delegate );
	
Methods Summary
private voidcheckstateManageable()

		if ( !isstateManageable() )
		{
			throw new UnsupportedOperationException( "stateManageable is false" );
		}
	
protected java.util.SetgetDontMapAttributeNames()

	
		 
	
	
		return( Collections.unmodifiableSet(
		    GSetUtil.newSet( DONT_MAP_SET, super.getDontMapAttributeNames() ) ));
	
public java.lang.StringgetdeploymentDescriptor()

		return( (String)delegateGetAttributeNoThrow( "deploymentDescriptor" ) );
	
public java.lang.Stringgetserver()

		return( getServerObjectName().toString() );
	
public booleanisstateManageable()
jsr77 StateManageable impl.

		return( false );
	
public voidstart()

		checkstateManageable();
		getDelegate().invoke( "start", null, null );
		setstartTime( System.currentTimeMillis() );
	
public voidstartRecursive()

 		start();
	
public voidstop()

		checkstateManageable();
		getDelegate().invoke( "stop", null, null );
		setstartTime( 0 );