All Packages Class Hierarchy This Package Previous Next Index
Class ninja.activeproxy.path.OpInfo
java.lang.Object
|
+----ninja.activeproxy.path.OpInfo
- public class OpInfo
- extends Object
Stores information about a particular operator
-
name
-
-
url
- URL to operator -- probably not useable with most web-browsers, etc
Used to open the operator via rmi.
-
xml
- Complete XML description of operator
-
OpInfo()
-
-
getOpClassName()
-
-
getOpDirectoryURL()
- Parse the operator url to get a path to the directory where the operator
resides.
-
getOpJavaPath()
-
-
GetXMLURLTag()
- Return http URL to the operator (the first parameter of the operator in the iSpace config file.)
xml
public String xml
- Complete XML description of operator
name
public String name
url
public String url
- URL to operator -- probably not useable with most web-browsers, etc
Used to open the operator via rmi.
OpInfo
public OpInfo()
GetXMLURLTag
public String GetXMLURLTag()
- Return http URL to the operator (the first parameter of the operator in the iSpace config file.)
- Returns:
- contents of codeURL tag, which is embedded in the XML of the operator when it is registered.
If no such operator exists, return null;
getOpDirectoryURL
public URL getOpDirectoryURL()
- Parse the operator url to get a path to the directory where the operator
resides. If complete url is:
http://myserver/java.class
returns
http://myserver/
- Returns:
- URL path to directory where operator resides
getOpClassName
public String getOpClassName()
- Returns:
- name of the class files from the remote URL
e.g. if url is http://myserver/java.class
returns java.class
getOpJavaPath
public String getOpJavaPath()
All Packages Class Hierarchy This Package Previous Next Index