KbTypeService Object Services | 13 | ![]() |
The KbTypeService module is defined in the file named:
It's version information is:
$Id: KB.mdl,v 1.107 1997-07-22 13:03:52-04 jrr Exp $
It is defined in the Java package named:
org.cert.KbTypeService
module KbTypeService
{
Forward declarations:
interface Action;
interface Condition;
interface Defect;
interface Program;
Sequence declarations:
typedef sequence<Action> SeqOfAction;
typedef sequence<Condition> SeqOfCondition;
typedef sequence<Defect> SeqOfDefect;
typedef sequence<Program> SeqOfProgram;
typedef unsigned long Time;
interface Condition {
};
interface Defect {
};
interface Program {
};
typedef string URL;
enum ActionState
{
embryo,
active,
suspended,
zombie
};
interface Action {
attribute string task;
attribute Time deadline;
attribute string status;
attribute Time birthtime;
attribute Time completionTime;
attribute ActionState state;
};
typedef unsigned long Date;
typedef unsigned long DateTime;
typedef sequence<URL> SeqOfURL;
exception CreationException {
};
};