_propDict)) { return $this->_propDict["connectingIP"]; } else { return null; } } /** * Sets the connectingIP * * @param string $val The value of the connectingIP * * @return MessageSecurityState */ public function setConnectingIP($val) { $this->_propDict["connectingIP"] = $val; return $this; } /** * Gets the deliveryAction * * @return string|null The deliveryAction */ public function getDeliveryAction() { if (array_key_exists("deliveryAction", $this->_propDict)) { return $this->_propDict["deliveryAction"]; } else { return null; } } /** * Sets the deliveryAction * * @param string $val The value of the deliveryAction * * @return MessageSecurityState */ public function setDeliveryAction($val) { $this->_propDict["deliveryAction"] = $val; return $this; } /** * Gets the deliveryLocation * * @return string|null The deliveryLocation */ public function getDeliveryLocation() { if (array_key_exists("deliveryLocation", $this->_propDict)) { return $this->_propDict["deliveryLocation"]; } else { return null; } } /** * Sets the deliveryLocation * * @param string $val The value of the deliveryLocation * * @return MessageSecurityState */ public function setDeliveryLocation($val) { $this->_propDict["deliveryLocation"] = $val; return $this; } /** * Gets the directionality * * @return string|null The directionality */ public function getDirectionality() { if (array_key_exists("directionality", $this->_propDict)) { return $this->_propDict["directionality"]; } else { return null; } } /** * Sets the directionality * * @param string $val The value of the directionality * * @return MessageSecurityState */ public function setDirectionality($val) { $this->_propDict["directionality"] = $val; return $this; } /** * Gets the internetMessageId * * @return string|null The internetMessageId */ public function getInternetMessageId() { if (array_key_exists("internetMessageId", $this->_propDict)) { return $this->_propDict["internetMessageId"]; } else { return null; } } /** * Sets the internetMessageId * * @param string $val The value of the internetMessageId * * @return MessageSecurityState */ public function setInternetMessageId($val) { $this->_propDict["internetMessageId"] = $val; return $this; } /** * Gets the messageFingerprint * * @return string|null The messageFingerprint */ public function getMessageFingerprint() { if (array_key_exists("messageFingerprint", $this->_propDict)) { return $this->_propDict["messageFingerprint"]; } else { return null; } } /** * Sets the messageFingerprint * * @param string $val The value of the messageFingerprint * * @return MessageSecurityState */ public function setMessageFingerprint($val) { $this->_propDict["messageFingerprint"] = $val; return $this; } /** * Gets the messageReceivedDateTime * * @return \DateTime|null The messageReceivedDateTime */ public function getMessageReceivedDateTime() { if (array_key_exists("messageReceivedDateTime", $this->_propDict)) { if (is_a($this->_propDict["messageReceivedDateTime"], "\DateTime") || is_null($this->_propDict["messageReceivedDateTime"])) { return $this->_propDict["messageReceivedDateTime"]; } else { $this->_propDict["messageReceivedDateTime"] = new \DateTime($this->_propDict["messageReceivedDateTime"]); return $this->_propDict["messageReceivedDateTime"]; } } return null; } /** * Sets the messageReceivedDateTime * * @param \DateTime $val The value to assign to the messageReceivedDateTime * * @return MessageSecurityState The MessageSecurityState */ public function setMessageReceivedDateTime($val) { $this->_propDict["messageReceivedDateTime"] = $val; return $this; } /** * Gets the messageSubject * * @return string|null The messageSubject */ public function getMessageSubject() { if (array_key_exists("messageSubject", $this->_propDict)) { return $this->_propDict["messageSubject"]; } else { return null; } } /** * Sets the messageSubject * * @param string $val The value of the messageSubject * * @return MessageSecurityState */ public function setMessageSubject($val) { $this->_propDict["messageSubject"] = $val; return $this; } /** * Gets the networkMessageId * * @return string|null The networkMessageId */ public function getNetworkMessageId() { if (array_key_exists("networkMessageId", $this->_propDict)) { return $this->_propDict["networkMessageId"]; } else { return null; } } /** * Sets the networkMessageId * * @param string $val The value of the networkMessageId * * @return MessageSecurityState */ public function setNetworkMessageId($val) { $this->_propDict["networkMessageId"] = $val; return $this; } }