Uses of Class
wt.router.RoutingStatus

Packages that use RoutingStatus
wt.router
router package — Routing Service

The routing service is designed to aid in scalability for different agent services by providing a convenient way to distribute execution of tasks to multiple Windchill method servers. 

 

Uses of RoutingStatus in wt.router
 

Fields in wt.router declared as RoutingStatus
private  RoutingStatus ToDoItem.status
           
static RoutingStatus RoutingStatus.TODO
          

Supported API: false
static RoutingStatus RoutingStatus.DONE
          

Supported API: false
 

Methods in wt.router that return RoutingStatus
 RoutingStatus ToDoItem.getStatus()
          Gets the object for the association that plays role: STATUS.
static RoutingStatus RoutingStatus.newRoutingStatus(int secretHandshake)
          Used by EnumeratedType for constructing instances of RoutingStatus, from a resource bundle.
static RoutingStatus RoutingStatus.toRoutingStatus(String internal_value)
          Returns the RoutingStatus instance for the internal_value argument.
static RoutingStatus RoutingStatus.getRoutingStatusDefault()
          Returns the default value (instance) for the RoutingStatus set.
static RoutingStatus[] RoutingStatus.getRoutingStatusSet()
          Returns a copy of the set of valid values (instances) for the RoutingStatus class.
 

Methods in wt.router with parameters of type RoutingStatus
 void ToDoItem.setStatus(RoutingStatus a_Status)
          Sets the object for the association that plays role: STATUS.
private  void ToDoItem.statusValidate(RoutingStatus a_Status)