-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Classes para auxiliar o desenvolvimento do webservice
- Loading branch information
0 parents
commit 2127cf2
Showing
34 changed files
with
1,622 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?php | ||
|
||
class CanonicalizationMethodType | ||
{ | ||
|
||
/** | ||
* | ||
* @var aanyXML $any | ||
* @access public | ||
*/ | ||
public $any = null; | ||
|
||
/** | ||
* | ||
* @var anyURI $Algorithm | ||
* @access public | ||
*/ | ||
public $Algorithm = null; | ||
|
||
/** | ||
* | ||
* @param aanyXML $any | ||
* @param anyURI $Algorithm | ||
* @access public | ||
*/ | ||
public function __construct($any, $Algorithm) | ||
{ | ||
$this->any = $any; | ||
$this->Algorithm = $Algorithm; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
<?php | ||
|
||
class DSAKeyValueType | ||
{ | ||
|
||
/** | ||
* | ||
* @var base64Binary $P | ||
* @access public | ||
*/ | ||
public $P = null; | ||
|
||
/** | ||
* | ||
* @var base64Binary $Q | ||
* @access public | ||
*/ | ||
public $Q = null; | ||
|
||
/** | ||
* | ||
* @var base64Binary $G | ||
* @access public | ||
*/ | ||
public $G = null; | ||
|
||
/** | ||
* | ||
* @var base64Binary $Y | ||
* @access public | ||
*/ | ||
public $Y = null; | ||
|
||
/** | ||
* | ||
* @var base64Binary $J | ||
* @access public | ||
*/ | ||
public $J = null; | ||
|
||
/** | ||
* | ||
* @var base64Binary $Seed | ||
* @access public | ||
*/ | ||
public $Seed = null; | ||
|
||
/** | ||
* | ||
* @var base64Binary $PgenCounter | ||
* @access public | ||
*/ | ||
public $PgenCounter = null; | ||
|
||
/** | ||
* | ||
* @param base64Binary $P | ||
* @param base64Binary $Q | ||
* @param base64Binary $G | ||
* @param base64Binary $Y | ||
* @param base64Binary $J | ||
* @param base64Binary $Seed | ||
* @param base64Binary $PgenCounter | ||
* @access public | ||
*/ | ||
public function __construct($P, $Q, $G, $Y, $J, $Seed, $PgenCounter) | ||
{ | ||
$this->P = $P; | ||
$this->Q = $Q; | ||
$this->G = $G; | ||
$this->Y = $Y; | ||
$this->J = $J; | ||
$this->Seed = $Seed; | ||
$this->PgenCounter = $PgenCounter; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?php | ||
|
||
class DigestMethodType | ||
{ | ||
|
||
/** | ||
* | ||
* @var aanyXML $any | ||
* @access public | ||
*/ | ||
public $any = null; | ||
|
||
/** | ||
* | ||
* @var anyURI $Algorithm | ||
* @access public | ||
*/ | ||
public $Algorithm = null; | ||
|
||
/** | ||
* | ||
* @param aanyXML $any | ||
* @param anyURI $Algorithm | ||
* @access public | ||
*/ | ||
public function __construct($any, $Algorithm) | ||
{ | ||
$this->any = $any; | ||
$this->Algorithm = $Algorithm; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
<?php | ||
|
||
class KeyInfoType | ||
{ | ||
|
||
/** | ||
* | ||
* @var KeyValueType $KeyValue | ||
* @access public | ||
*/ | ||
public $KeyValue = null; | ||
|
||
/** | ||
* | ||
* @var RetrievalMethodType $RetrievalMethod | ||
* @access public | ||
*/ | ||
public $RetrievalMethod = null; | ||
|
||
/** | ||
* | ||
* @var X509DataType $X509Data | ||
* @access public | ||
*/ | ||
public $X509Data = null; | ||
|
||
/** | ||
* | ||
* @var string $KeyName | ||
* @access public | ||
*/ | ||
public $KeyName = null; | ||
|
||
/** | ||
* | ||
* @var string $MgmtData | ||
* @access public | ||
*/ | ||
public $MgmtData = null; | ||
|
||
/** | ||
* | ||
* @var PGPDataType $PGPData | ||
* @access public | ||
*/ | ||
public $PGPData = null; | ||
|
||
/** | ||
* | ||
* @var SPKIDataType $SPKIData | ||
* @access public | ||
*/ | ||
public $SPKIData = null; | ||
|
||
/** | ||
* | ||
* @var aanyXML $any | ||
* @access public | ||
*/ | ||
public $any = null; | ||
|
||
/** | ||
* | ||
* @var ID $Id | ||
* @access public | ||
*/ | ||
public $Id = null; | ||
|
||
/** | ||
* | ||
* @param KeyValueType $KeyValue | ||
* @param RetrievalMethodType $RetrievalMethod | ||
* @param X509DataType $X509Data | ||
* @param string $KeyName | ||
* @param string $MgmtData | ||
* @param PGPDataType $PGPData | ||
* @param SPKIDataType $SPKIData | ||
* @param aanyXML $any | ||
* @param ID $Id | ||
* @access public | ||
*/ | ||
public function __construct($KeyValue, $RetrievalMethod, $X509Data, $KeyName, $MgmtData, $PGPData, $SPKIData, $any, $Id) | ||
{ | ||
$this->KeyValue = $KeyValue; | ||
$this->RetrievalMethod = $RetrievalMethod; | ||
$this->X509Data = $X509Data; | ||
$this->KeyName = $KeyName; | ||
$this->MgmtData = $MgmtData; | ||
$this->PGPData = $PGPData; | ||
$this->SPKIData = $SPKIData; | ||
$this->any = $any; | ||
$this->Id = $Id; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<?php | ||
|
||
class KeyValueType | ||
{ | ||
|
||
/** | ||
* | ||
* @var DSAKeyValueType $DSAKeyValue | ||
* @access public | ||
*/ | ||
public $DSAKeyValue = null; | ||
|
||
/** | ||
* | ||
* @var RSAKeyValueType $RSAKeyValue | ||
* @access public | ||
*/ | ||
public $RSAKeyValue = null; | ||
|
||
/** | ||
* | ||
* @var aanyXML $any | ||
* @access public | ||
*/ | ||
public $any = null; | ||
|
||
/** | ||
* | ||
* @param DSAKeyValueType $DSAKeyValue | ||
* @param RSAKeyValueType $RSAKeyValue | ||
* @param aanyXML $any | ||
* @access public | ||
*/ | ||
public function __construct($DSAKeyValue, $RSAKeyValue, $any) | ||
{ | ||
$this->DSAKeyValue = $DSAKeyValue; | ||
$this->RSAKeyValue = $RSAKeyValue; | ||
$this->any = $any; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<?php | ||
|
||
class ObjectType | ||
{ | ||
|
||
/** | ||
* | ||
* @var aanyXML $any | ||
* @access public | ||
*/ | ||
public $any = null; | ||
|
||
/** | ||
* | ||
* @var ID $Id | ||
* @access public | ||
*/ | ||
public $Id = null; | ||
|
||
/** | ||
* | ||
* @var string $MimeType | ||
* @access public | ||
*/ | ||
public $MimeType = null; | ||
|
||
/** | ||
* | ||
* @var anyURI $Encoding | ||
* @access public | ||
*/ | ||
public $Encoding = null; | ||
|
||
/** | ||
* | ||
* @param aanyXML $any | ||
* @param ID $Id | ||
* @param string $MimeType | ||
* @param anyURI $Encoding | ||
* @access public | ||
*/ | ||
public function __construct($any, $Id, $MimeType, $Encoding) | ||
{ | ||
$this->any = $any; | ||
$this->Id = $Id; | ||
$this->MimeType = $MimeType; | ||
$this->Encoding = $Encoding; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<?php | ||
|
||
class PGPDataType | ||
{ | ||
|
||
/** | ||
* | ||
* @var base64Binary $PGPKeyPacket | ||
* @access public | ||
*/ | ||
public $PGPKeyPacket = null; | ||
|
||
/** | ||
* | ||
* @var base64Binary $PGPKeyID | ||
* @access public | ||
*/ | ||
public $PGPKeyID = null; | ||
|
||
/** | ||
* | ||
* @var aanyXML $any | ||
* @access public | ||
*/ | ||
public $any = null; | ||
|
||
/** | ||
* | ||
* @param base64Binary $PGPKeyPacket | ||
* @param base64Binary $PGPKeyID | ||
* @param aanyXML $any | ||
* @access public | ||
*/ | ||
public function __construct($PGPKeyPacket, $PGPKeyID, $any) | ||
{ | ||
$this->PGPKeyPacket = $PGPKeyPacket; | ||
$this->PGPKeyID = $PGPKeyID; | ||
$this->any = $any; | ||
} | ||
|
||
} |
Oops, something went wrong.