$packageInstance = $this->getStackInstance()->getNamed(self::STACKER_NAME_DECODED_HANDLED);
// Start assembling the raw package data array by chunking it
- $this->getAssemblerInstance()->chunkPackageContent($packageInstance);
+ $this->getAssemblerInstance()->chunkPackageInstance($packageInstance);
// Remove the package from 'handled_decoded' stack ...
$this->getStackInstance()->popNamed(self::STACKER_NAME_DECODED_HANDLED);
*/
private $senderPrivateKeyHash;
+ /**
+ * Raw data
+ */
+ private $rawData;
+
+ /**
+ * Error code
+ */
+ private $errorCode;
+
/**
* Protected constructor
*
return $this->senderPrivateKeyHash;
}
+ /**
+ * Getter for raw data
+ *
+ * @return $rawData Raw data
+ */
+ public function getRawData () {
+ return $this->rawData;
+ }
+
+ /**
+ * Setter for raw data
+ *
+ * @param $rawData Raw data
+ * @return void
+ */
+ public function setRawData ($rawData) {
+ $this->rawData = $rawData;
+ }
+
+ /**
+ * Getter for error code
+ *
+ * @return $errorCode Error code
+ */
+ public function getErrorCode () {
+ return $this->errorCode;
+ }
+
+ /**
+ * Setter for error code
+ *
+ * @param $errorCode Error code
+ * @return void
+ */
+ public function setErrorCode ($errorCode) {
+ $this->errorCode = $errorCode;
+ }
+
/**
* Collecting "getter" for all class fields as array
*