Class Ecrion.DAS.Diagram

Top Previous Topic Next Topic  Print this topic

A diagram can be an instance of either a ServerDiagram or a LocalDiagram.

 

Members

 

Name

Description

Properties

The list of properties.

 

 

Properties

A list with all the properties of the current job.

 

 

public Vector Properties

 

 

 

A property is a string triplet:

 

objectid - specifies the id of the xml element on which this property should be applied.

name - specifies the name of the property (xml attribute name).

value - specifies the new value for the attribute that will be overwritten.

 

A property may be used to overwrite some attributes in your processing job file such as a connection string, Web service method name, etc.

 

 

public class JobProperty

{

  public JobProperty(String ObjectID, String PropertyName, String PropertyValue)

   {

      this.ObjectID = ObjectID;

      this.PropertyName = PropertyName;

      this.PropertyValue = PropertyValue;

   }

 

  public String ObjectID = "";

  public String PropertyName = "";

  public String PropertyValue = "";

};

 

 

 

 

ServerDiagram

 

ServerDiagram is a derived class from the Diagram class.

 

Members

 

Name

Description

DiagramID

A string that uniquely identifies a server diagram.

 

DiagramID

 

A string that uniquely identifies a server diagram. It must be specified as "applicationname:diagramname" where diagram name includes the file.

 

 

public String DiagramID;

 

 

 

 

LocalDiagram

 

LocalDiagram is a derived class from the Diagram class.

 

Members

 

Name

Description

DiagramStream

The diagram stream used to aggregate data.

BaseUrl

The base URL used to resolve relative paths when looking up resources.

 

diagramStream

 

 

public InputStream DiagramContent;