| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <?php
- namespace MGModule\DNSManager2\mgLibs\custom\dns\dnssec;
- class Key
- {
- /**
- *
- * @var integer
- */
- protected $id;
-
- /**
- *
- * @var integer
- */
- protected $started;
-
- /**
- *
- * @var integer
- */
- protected $expires;
-
- /**
- *
- * @var integer
- */
- protected $bits;
-
- /**
- *
- * @var integer
- */
- protected $lifetime;
-
- /**
- *
- * @var type
- */
- protected $type;
-
- /**
- *
- * @var \MGModule\DNSManager2\mgLibs\custom\dns\record\type\DNSKEY
- */
- protected $dnskey;
-
-
- function getId() {
- return $this->id;
- }
- function getStarted() {
- return $this->started;
- }
- function getExpires() {
- return $this->expires;
- }
- function getBits() {
- return $this->bits;
- }
- function getLifetime() {
- return $this->lifetime;
- }
- function getDnsKey() {
- return $this->dnskey;
- }
- function setId($id) {
- $this->id = $id;
- }
- function setStarted($started) {
- $this->started = $started;
- }
- function setExpires($expires) {
- $this->expires = $expires;
- }
- function setBits($bits) {
- $this->bits = $bits;
- }
- function setLifetime($lifetime) {
- $this->lifetime = $lifetime;
- }
- function setDnsKey(\MGModule\DNSManager2\mgLibs\custom\dns\record\type\DNSKEY $dnskey = null) {
- $this->dnskey = $dnskey;
- }
-
- function getType() {
- return $this->type;
- }
- }
|