FleetEngineServiceType

  • FleetEngineServiceType is an annotation that defines types of Fleet Engine OnePlatform services.

  • It includes four service types: TERMINAL_POINT_SERVICE, TRIP_SERVICE, UNKNOWN_SERVICE, and VEHICLE_SERVICE.

  • Each service type is represented by an integer constant and provides access to specific information within Fleet Engine.

  • Developers can use this annotation to specify which Fleet Engine service they need to interact with.

public abstract @interface FleetEngineServiceType implements Annotation

Types of Fleet Engine OnePlatform services.

Constant Summary

int TERMINAL_POINT_SERVICE Fleet Engine service used to access terminal point information.
int TRIP_SERVICE Fleet Engine service used to access trip information.
int UNKNOWN_SERVICE Unknown Fleet Engine service.
int VEHICLE_SERVICE Fleet Engine service used to access vehicle information.

Inherited Method Summary

Constants

public static final int TERMINAL_POINT_SERVICE

Fleet Engine service used to access terminal point information.

Constant Value: 1

public static final int TRIP_SERVICE

Fleet Engine service used to access trip information.

Constant Value: 2

public static final int UNKNOWN_SERVICE

Unknown Fleet Engine service.

Constant Value: 0

public static final int VEHICLE_SERVICE

Fleet Engine service used to access vehicle information.

Constant Value: 3