Oracle Fusion Middleware Java API Reference for Oracle Extension SDK
11g Release 2 (11.1.2.1.0)

E17493-02

oracle.jdeveloper.runner
Interface BrowseablePaths

All Superinterfaces:
Browseable
All Known Subinterfaces:
ClientList

public interface BrowseablePaths
extends Browseable

Extension of Browseable interface that allows the Node to specify multiple custom browseable paths that should be used when constructing the target URL.


Method Summary
 java.lang.String getBrowseablePath(int index)
          Returns the context-relative path, at the specified index, that should be used for browsing the object that is being run in the embedded server.
 int getBrowseablePathCount()
          Returns the number of browseable paths.
 Displayable getDisplayable(int index)
          Returns the Displayable that represents the browseable path at the specified index.
 

Method Detail

getBrowseablePathCount

int getBrowseablePathCount()
Returns the number of browseable paths.


getDisplayable

Displayable getDisplayable(int index)
Returns the Displayable that represents the browseable path at the specified index.


getBrowseablePath

java.lang.String getBrowseablePath(int index)
Returns the context-relative path, at the specified index, 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


Oracle Fusion Middleware Java API Reference for Oracle Extension SDK
11g Release 2 (11.1.2.1.0)

E17493-02

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