oracle.jdeveloper.runner
Interface BrowseablePath
- All Superinterfaces:
- Browseable
- public interface BrowseablePath
- extends Browseable
Extension of Browseable
interface that allows the Node to specify a custom browseable path that should be used when constructing the target URL.
Method Summary |
java.lang.String |
getBrowseablePath()
Returns the context-relative path that should be used for browsing the object that is being run in the embedded server. |
getBrowseablePath
public java.lang.String getBrowseablePath()
- Returns the context-relative path that should be used for browsing the object that is being run in the embedded server.
The returned string should not begin with a "/" unless an extra "/" in the target URL is needed. For example, if getBrowseablePath() returns "foo/bar.abc", the target URL will be of the form: http://localhost:8988/Workspace1-Project1-context-root/foo/bar.abc
If getBrowseablePath() returns "/foo/bar.abc", the target URL will be of the form (note the extra "/" before "foo"): http://localhost:8988/Workspace1-Project1-context-root//foo/bar.abc
Copyright © 1997, 2004, Oracle. All rights reserved.