A diagram can be an instance of either a ServerDiagram or a LocalDiagram.
Members
Name |
Description |
The list of 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 is a derived class from the Diagram class.
Members
Name |
Description |
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 is a derived class from the Diagram class.
Members
Name |
Description |
The diagram stream used to aggregate data. |
|
The base URL used to resolve relative paths when looking up resources. |
diagramStream
public InputStream DiagramContent;