Extension SDK 9.0.5

oracle.jdeveloper.runner
Interface EmbeddedServerExtension


public interface EmbeddedServerExtension

This interface defines an extension mechanism for JDeveloper's embedded server. There are two ways to provide an extension to the embedded server:

If multiple extensions match for a given Node, the invocation order is:
  1. the Node itself, if it implements EmbeddedServerExtension
  2. any other extensions in registration order
The only method in this interface is one that creates an instance of EmbeddedServerCallback. All the behavioral changes for the embedded server are to be implemented in the callback class.


Method Summary
 EmbeddedServerCallback createEmbeddedServerCallback(EmbeddedServerAdmin admin)
           
 

Method Detail

createEmbeddedServerCallback

public EmbeddedServerCallback createEmbeddedServerCallback(EmbeddedServerAdmin admin)
Returns:
A new instance of EmbeddedServerCallback that is configured to work with the specified EmbeddedServerAdmin instance. The specified EmbeddedServerAdmin parameter will always be non-null.

Extension SDK

 

Copyright © 1997, 2004, Oracle. All rights reserved.