OpenJAUS SAE SDK  6.0.0
Public Member Functions | Static Public Attributes | Private Attributes | Friends | List of all members
openjaus::core_v1_1::RejectEventRequest Class Reference

RejectEventRequest Message Implementation. More...

#include <RejectEventRequest.h>

Inherits openjaus::model::Message.

Public Member Functions

 RejectEventRequest ()
 
 RejectEventRequest (model::Message *message)
 
 ~RejectEventRequest ()
 
virtual uint64 to (system::BufferWriter &dst) const
 Pack this message to the given openjaus::system::Buffer. More...
 
virtual uint64 from (system::BufferReader &src)
 Unpack this message from the given openjaus::system::Buffer. More...
 
virtual uint64 length () const
 Get the number of bytes this message would occupy in a serialized buffer. More...
 
std::string toXml (unsigned char ojIndentLevel=0) const
 Used to serialize the runtime state of the message to an XML format. More...
 
std::string toString () const
 Returns a string populated with the Message name and ID More...
 
void setPresenceVector (uint8_t value)
 
uint8_t getPresenceVector (void) const
 
bool isResponseCodeEnabled (void) const
 
void enableResponseCode (void)
 
void disableResponseCode (void)
 
bool isErrorMessageEnabled (void) const
 
void enableErrorMessage (void)
 
void disableErrorMessage (void)
 
uint8_t getRequestID (void)
 
bool setRequestID (uint8_t value)
 
ResponseCodeEnumeration::ResponseCodeEnum getResponseCode (void)
 
bool setResponseCode (ResponseCodeEnumeration::ResponseCodeEnum value)
 
std::string getResponseCodeToString (void)
 
std::string getErrorMessage (void)
 
bool setErrorMessage (std::string value)
 
- Public Member Functions inherited from openjaus::model::Message
 Message ()
 
virtual ~Message ()
 
 Message (Message *message)
 
- Public Member Functions inherited from openjaus::transport::Wrapper
virtual ~Wrapper ()
 
AckNakType getAckNak () const
 Accessor to get the value of ackNak. More...
 
bool setAckNak (AckNakType ackNak)
 Accessor to set value of ackNak. More...
 
bool isCompressible () const
 Accessor to get the value of compressible. More...
 
bool setCompressible (bool compressible)
 Accessor to set value of compressible. More...
 
bool isMustArrive () const
 Accessor to get the value of mustArrive. More...
 
bool setMustArrive (bool mustArrive)
 Accessor to set value of mustArrive. More...
 
uint16_t getSequenceNumber () const
 Accessor to get the value of sequenceNumber. More...
 
bool setSequenceNumber (uint16_t sequenceNumber)
 Accessor to set value of sequenceNumber. More...
 
WrapperType getType () const
 Accessor to get the value of type. More...
 
bool setType (WrapperType type)
 Accessor to set value of type. More...
 
Priority getPriority () const
 Accessor to get the value of priority. More...
 
bool setPriority (Priority priority)
 Accessor to set value of priority. More...
 
BroadcastType getBroadcastFlag () const
 Accessor to get the value of broadcastFlag. More...
 
bool setBroadcastFlag (BroadcastType broadcastFlag)
 Accessor to set value of broadcastFlag. More...
 
LargeMessageType getLargeMessageFlag () const
 Accessor to get the value of largeMessageFlag. More...
 
bool setLargeMessageFlag (LargeMessageType largeMessageFlag)
 Accessor to set value of largeMessageFlag. More...
 
const AddressgetDestination () const
 Accessor to get the value of destination. More...
 
bool setDestination (const Address &destination)
 Accessor to set value of destination. More...
 
system::TransportablegetPayload () const
 Accessor to get the value of payload. More...
 
bool setPayload (system::Transportable *payload)
 Accessor to set value of payload. More...
 
const AddressgetSource () const
 Accessor to get the value of source. More...
 
bool setSource (const Address &source)
 Accessor to set value of source. More...
 
TransportDatagetTransportData () const
 Accessor to get the value of transportData. More...
 
bool setTransportData (TransportData *transportData)
 Accessor to set value of transportData. More...
 
virtual int prioritizedValue ()
 Operation prioritizedValue. More...
 
virtual Wrapperclone ()
 
- Public Member Functions inherited from openjaus::system::Transportable
 Transportable ()
 
virtual ~Transportable ()
 
- Public Member Functions inherited from openjaus::system::Prioritized
virtual ~Prioritized ()
 
- Public Member Functions inherited from openjaus::model::Trigger
 Trigger ()
 
virtual ~Trigger ()
 
double getTriggerTimestamp_sec () const
 Accessor to get the value of triggerTimestamp_sec. More...
 
bool setTriggerTimestamp_sec (double triggerTimestamp_sec)
 Accessor to set value of triggerTimestamp_sec. More...
 
uint32_t getId () const
 Accessor to get the value of id. More...
 
bool setId (uint32_t id)
 Accessor to set value of id. More...
 
std::string idString ()
 Operation idString. More...
 

Static Public Attributes

static const uint16_t ID = 0x01F4
 
static const uint8_t PV_NO_FIELDS = 0x0
 
static const uint8_t PV_RESPONSECODE = 0x1
 
static const uint8_t PV_ERRORMESSAGE = 0x2
 
static const uint8_t PV_ALL_FIELDS = PV_NO_FIELDS | PV_RESPONSECODE | PV_ERRORMESSAGE
 

Private Attributes

model::fields::UnsignedByte requestID
 
ResponseCodeEnumeration responseCode
 
model::fields::FixedLengthString errorMessage
 
uint8_t presenceVector
 

Friends

OPENJAUS_EXPORT friend std::ostream & operator<< (std::ostream &output, const RejectEventRequest &object)
 OStream operator for Message object More...
 
OPENJAUS_EXPORT friend std::ostream & operator<< (std::ostream &output, const RejectEventRequest *object)
 OStream operator for Message pointer More...
 

Additional Inherited Members

- Protected Member Functions inherited from openjaus::transport::Wrapper
 Wrapper ()
 
 Wrapper (const Wrapper &wrapper)
 
- Protected Attributes inherited from openjaus::transport::Wrapper
AckNakType ackNak
 
bool compressible
 
bool mustArrive
 
uint16_t sequenceNumber
 
WrapperType type
 
Priority priority
 
BroadcastType broadcastFlag
 
LargeMessageType largeMessageFlag
 
Address destination
 
system::Transportablepayload
 
Address source
 
TransportDatatransportData
 
- Protected Attributes inherited from openjaus::model::Trigger
double triggerTimestamp_sec
 
uint32_t id
 

Detailed Description

The Reject Event Request message is used to reject an Event creation, update or cancellation. Field 2 represents the Request ID from the Create, Update, or Cancel message that initiated this message. The Request ID’s scope is local to the requesting client only.

Constructor & Destructor Documentation

◆ RejectEventRequest() [1/2]

openjaus::core_v1_1::RejectEventRequest::RejectEventRequest ( )

◆ RejectEventRequest() [2/2]

openjaus::core_v1_1::RejectEventRequest::RejectEventRequest ( model::Message message)

◆ ~RejectEventRequest()

openjaus::core_v1_1::RejectEventRequest::~RejectEventRequest ( )

Member Function Documentation

◆ disableErrorMessage()

void openjaus::core_v1_1::RejectEventRequest::disableErrorMessage ( void  )

◆ disableResponseCode()

void openjaus::core_v1_1::RejectEventRequest::disableResponseCode ( void  )

◆ enableErrorMessage()

void openjaus::core_v1_1::RejectEventRequest::enableErrorMessage ( void  )

◆ enableResponseCode()

void openjaus::core_v1_1::RejectEventRequest::enableResponseCode ( void  )

◆ from()

uint64 openjaus::core_v1_1::RejectEventRequest::from ( system::BufferReader src)
virtual
Parameters
[in]src- The source openjaus::system::Buffer from which this message will be unpacked.
Returns
The number of bytes unpacked from the source buffer

Reimplemented from openjaus::model::Message.

◆ getErrorMessage()

std::string openjaus::core_v1_1::RejectEventRequest::getErrorMessage ( void  )

◆ getPresenceVector()

uint8_t openjaus::core_v1_1::RejectEventRequest::getPresenceVector ( void  ) const

◆ getRequestID()

uint8_t openjaus::core_v1_1::RejectEventRequest::getRequestID ( void  )

◆ getResponseCode()

ResponseCodeEnumeration::ResponseCodeEnum openjaus::core_v1_1::RejectEventRequest::getResponseCode ( void  )

◆ getResponseCodeToString()

std::string openjaus::core_v1_1::RejectEventRequest::getResponseCodeToString ( void  )

◆ isErrorMessageEnabled()

bool openjaus::core_v1_1::RejectEventRequest::isErrorMessageEnabled ( void  ) const

◆ isResponseCodeEnabled()

bool openjaus::core_v1_1::RejectEventRequest::isResponseCodeEnabled ( void  ) const

◆ length()

uint64 openjaus::core_v1_1::RejectEventRequest::length ( void  ) const
virtual
Returns
The number of bytes this message would occupy in a buffer

Reimplemented from openjaus::model::Message.

◆ setErrorMessage()

bool openjaus::core_v1_1::RejectEventRequest::setErrorMessage ( std::string  value)

◆ setPresenceVector()

void openjaus::core_v1_1::RejectEventRequest::setPresenceVector ( uint8_t  value)

◆ setRequestID()

bool openjaus::core_v1_1::RejectEventRequest::setRequestID ( uint8_t  value)

◆ setResponseCode()

bool openjaus::core_v1_1::RejectEventRequest::setResponseCode ( ResponseCodeEnumeration::ResponseCodeEnum  value)

◆ to()

uint64 openjaus::core_v1_1::RejectEventRequest::to ( system::BufferWriter dst) const
virtual
Parameters
[out]dst- The destination openjaus::system::Buffer to which this message will be packed.
Returns
The number of bytes packed into the destination buffer

Reimplemented from openjaus::model::Message.

◆ toString()

std::string openjaus::core_v1_1::RejectEventRequest::toString ( ) const
virtual
Returns
The string

Reimplemented from openjaus::model::Message.

◆ toXml()

std::string openjaus::core_v1_1::RejectEventRequest::toXml ( unsigned char  ojIndentLevel = 0) const
Parameters
[in]ojIndentLevel- Used to determine how many tabs are inserted per line for pretty formating.
Returns
The serialized XML string

Friends And Related Function Documentation

◆ operator<< [1/2]

OPENJAUS_EXPORT friend std::ostream& operator<< ( std::ostream &  output,
const RejectEventRequest object 
)
friend

◆ operator<< [2/2]

OPENJAUS_EXPORT friend std::ostream& operator<< ( std::ostream &  output,
const RejectEventRequest object 
)
friend

Member Data Documentation

◆ errorMessage

model::fields::FixedLengthString openjaus::core_v1_1::RejectEventRequest::errorMessage
private

◆ ID

const uint16_t openjaus::core_v1_1::RejectEventRequest::ID = 0x01F4
static

◆ presenceVector

uint8_t openjaus::core_v1_1::RejectEventRequest::presenceVector
private

◆ PV_ALL_FIELDS

const uint8_t openjaus::core_v1_1::RejectEventRequest::PV_ALL_FIELDS = PV_NO_FIELDS | PV_RESPONSECODE | PV_ERRORMESSAGE
static

◆ PV_ERRORMESSAGE

const uint8_t openjaus::core_v1_1::RejectEventRequest::PV_ERRORMESSAGE = 0x2
static

◆ PV_NO_FIELDS

const uint8_t openjaus::core_v1_1::RejectEventRequest::PV_NO_FIELDS = 0x0
static

◆ PV_RESPONSECODE

const uint8_t openjaus::core_v1_1::RejectEventRequest::PV_RESPONSECODE = 0x1
static

◆ requestID

model::fields::UnsignedByte openjaus::core_v1_1::RejectEventRequest::requestID
private

◆ responseCode

ResponseCodeEnumeration openjaus::core_v1_1::RejectEventRequest::responseCode
private

The documentation for this class was generated from the following files: