for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace GoetasWebservices\SoapServices\SoapClient\WssWsSecurity;
abstract class AbstractWsSecurityFilter
{
/**
* Web Services Security Utility namespace.
*/
const NS_WSU = 'http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd';
* Web Services Security Extension namespace.
const NS_WSS = 'http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd';
* Service SecurityKeyPair.
*
* @var SecurityKeyPair
protected $serviceSecurityKey;
* User SecurityKeyPair.
protected $userSecurityKey;
* Set service security key.
* @param SecurityKeyPair $serviceSecurityKey Service security key
* @return void
public function setServiceSecurityKeyObject(SecurityKeyPair $serviceSecurityKey)
$this->serviceSecurityKey = $serviceSecurityKey;
}
* Set user security key.
* @param SecurityKeyPair $userSecurityKey User security key
public function setUserSecurityKeyObject(SecurityKeyPair $userSecurityKey)
$this->userSecurityKey = $userSecurityKey;