diff --git a/Symfony/src/AppBundle/Entity/FirmwareConfig.php b/Symfony/src/AppBundle/Entity/FirmwareConfig.php new file mode 100644 index 0000000..8d33cff --- /dev/null +++ b/Symfony/src/AppBundle/Entity/FirmwareConfig.php @@ -0,0 +1,344 @@ +id; + } + + /** + * Set owner + * + * @param integer $owner + * + * @return FirmwareConfig + */ + public function setOwner($owner) + { + $this->owner = $owner; + + return $this; + } + + /** + * Get owner + * + * @return int + */ + public function getOwner() + { + return $this->owner; + } + + /** + * Set hexFileUrl + * + * @param string $hexFileUrl + * + * @return FirmwareConfig + */ + public function setHexFileUrl($hexFileUrl) + { + $this->hexFileUrl = $hexFileUrl; + + return $this; + } + + /** + * Get hexFileUrl + * + * @return string + */ + public function getHexFileUrl() + { + return $this->hexFileUrl; + } + + /** + * Set boardUploadConfig + * + * @param array $boardUploadConfig + * + * @return FirmwareConfig + */ + public function setBoardUploadConfig($boardUploadConfig) + { + $this->boardUploadConfig = $boardUploadConfig; + + return $this; + } + + /** + * Get boardUploadConfig + * + * @return array + */ + public function getBoardUploadConfig() + { + return $this->boardUploadConfig; + } + + /** + * Set iPProgrammer + * + * @param array $iPProgrammer + * + * @return FirmwareConfig + */ + public function setIPProgrammer($iPProgrammer) + { + $this->iPProgrammer = $iPProgrammer; + + return $this; + } + + /** + * Get iPProgrammer + * + * @return array + */ + public function getIPProgrammer() + { + return $this->iPProgrammer; + } + + /** + * Set serialPortAutoDetect + * + * @param boolean $serialPortAutoDetect + * + * @return FirmwareConfig + */ + public function setSerialPortAutoDetect($serialPortAutoDetect) + { + $this->serialPortAutoDetect = $serialPortAutoDetect; + + return $this; + } + + /** + * Get serialPortAutoDetect + * + * @return bool + */ + public function isSerialPortAutoDetect() + { + return $this->serialPortAutoDetect; + } + + /** + * Set buttonName + * + * @param string $buttonName + * + * @return FirmwareConfig + */ + public function setButtonName($buttonName) + { + $this->buttonName = $buttonName; + + return $this; + } + + /** + * Get buttonName + * + * @return string + */ + public function getButtonName() + { + return $this->buttonName; + } + + /** + * Set iFrameWidth + * + * @param integer $iFrameWidth + * + * @return FirmwareConfig + */ + public function setIFrameWidth($iFrameWidth) + { + $this->iFrameWidth = $iFrameWidth; + + return $this; + } + + /** + * Get iFrameWidth + * + * @return int + */ + public function getIFrameWidth() + { + return $this->iFrameWidth; + } + + /** + * Set iFrameHeight + * + * @param integer $iFrameHeight + * + * @return FirmwareConfig + */ + public function setIFrameHeight($iFrameHeight) + { + $this->iFrameHeight = $iFrameHeight; + + return $this; + } + + /** + * Get iFrameHeight + * + * @return int + */ + public function getIFrameHeight() + { + return $this->iFrameHeight; + } + + /** + * Set iFrameBackground + * + * @param string $iFrameBackground + * + * @return FirmwareConfig + */ + public function setIFrameBackground($iFrameBackground) + { + $this->iFrameBackground = $iFrameBackground; + + return $this; + } + + /** + * Get iFrameBackground + * + * @return string + */ + public function getIFrameBackground() + { + return $this->iFrameBackground; + } + + /** + * Set uniqueUrl + * + * @param string $uniqueUrl + * + * @return FirmwareConfig + */ + public function setUniqueUrl($uniqueUrl) + { + $this->uniqueUrl = $uniqueUrl; + + return $this; + } + + /** + * Get uniqueUrl + * + * @return string + */ + public function getUniqueUrl() + { + return $this->uniqueUrl; + } +} diff --git a/Symfony/src/AppBundle/Repository/FirmwareConfigRepository.php b/Symfony/src/AppBundle/Repository/FirmwareConfigRepository.php new file mode 100644 index 0000000..401bf4b --- /dev/null +++ b/Symfony/src/AppBundle/Repository/FirmwareConfigRepository.php @@ -0,0 +1,10 @@ +