com.wrq.vhi.sconfig
Interface IModelBrowser


public interface IModelBrowser

Interface class for obtaining information about models deployed to a VHI server. Use the ServerConfig.newModelBrowser() methods to create instances of this interface.


Method Summary
 Model getModel(java.lang.String modelName)
          Return information about a specific model.
 java.util.List getModelNames()
          Return a list of the names of models deployed to a VHI server, obtained from a call to the readConfiguration() method.
 java.util.List readConfiguration()
          Read model information from a VHI server.
 

Method Detail

readConfiguration

java.util.List readConfiguration()
Read model information from a VHI server.

Returns:
List of SCStatus container objects detailing errors, or null of the operation has fully succeeded.

getModelNames

java.util.List getModelNames()
Return a list of the names of models deployed to a VHI server, obtained from a call to the readConfiguration() method.

Returns:
List of Model container objects.

getModel

Model getModel(java.lang.String modelName)
Return information about a specific model.

Parameters:
modelName - Name of the model for which information is to be obtained.
Returns:
Model information, or null if the model is not found.