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:
- the Node itself, if it implements EmbeddedServerExtension
- 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.
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.
Copyright © 1997, 2004, Oracle. All rights reserved.