Groovy Documentation

com.ace.mws.reservations
[Groovy] Class ReservationStatistics

java.lang.Object
  com.ace.mws.reservations.ReservationStatistics

class ReservationStatistics

Represents some basic statistical information that is kept about the usage of reservations. All metrics that are kept track relate to processor-seconds usage.


Field Summary
private Double caps

The current active processor-seconds in the last reported iteration.

private Double cips

The current idle processor-seconds in the last reported iteration.

private Long id

private static long serialVersionUID

private Double taps

The total active processor-seconds over the life of the reservation.

private Double tips

The total idle processor-seconds over the life of the reservation.

 
Constructor Summary
ReservationStatistics()

 
Method Summary
Double getCaps()

The current active processor-seconds in the last reported iteration.

Double getCips()

The current idle processor-seconds in the last reported iteration.

Long getId()

Double getTaps()

The total active processor-seconds over the life of the reservation.

Double getTips()

The total idle processor-seconds over the life of the reservation.

void setCaps(Double caps)

The current active processor-seconds in the last reported iteration.

void setCips(Double cips)

The current idle processor-seconds in the last reported iteration.

void setId(Long id)

void setTaps(Double taps)

The total active processor-seconds over the life of the reservation.

void setTips(Double tips)

The total idle processor-seconds over the life of the reservation.

String toString()

 
Methods inherited from class Object
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll
 

Field Detail

caps

private Double caps
The current active processor-seconds in the last reported iteration.


cips

private Double cips
The current idle processor-seconds in the last reported iteration.


id

private Long id


serialVersionUID

private static final long serialVersionUID


taps

private Double taps
The total active processor-seconds over the life of the reservation.


tips

private Double tips
The total idle processor-seconds over the life of the reservation.


 
Constructor Detail

ReservationStatistics

ReservationStatistics()


 
Method Detail

getCaps

Double getCaps()
The current active processor-seconds in the last reported iteration.


getCips

Double getCips()
The current idle processor-seconds in the last reported iteration.


getId

Long getId()


getTaps

Double getTaps()
The total active processor-seconds over the life of the reservation.


getTips

Double getTips()
The total idle processor-seconds over the life of the reservation.


setCaps

void setCaps(Double caps)
The current active processor-seconds in the last reported iteration.


setCips

void setCips(Double cips)
The current idle processor-seconds in the last reported iteration.


setId

void setId(Long id)


setTaps

void setTaps(Double taps)
The total active processor-seconds over the life of the reservation.


setTips

void setTips(Double tips)
The total idle processor-seconds over the life of the reservation.


toString

String toString()


 

Groovy Documentation