MdCguWsComplementarIntegracao.php
1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
/**
* CONTROLADORIA GERAL DA UNIAO
*
* 03/10/2017 - criado por rafael.ferreira@cgu.gov.br
*
*/
class MdCguWsComplementarIntegracao extends SeiIntegracao
{
// public function __construct()
// {
// }
public function getNome()
{
return 'Módulo de Webservice de consultas complementar da CGU';
}
public function getVersao()
{
return '2.0.0';
}
public function getInstituicao()
{
return 'CGU - Controladoria Geral da União';
}
// public function inicializar($strVersaoSEI)
// {
// /*
// if (substr($strVersaoSEI, 0, 2) != '3.'){
// die('Módulo "'.$this->getNome().'" ('.$this->getVersao().') não é compatível com esta versão do SEI ('.$strVersaoSEI.').');
// }
// */
// }
public function processarControladorWebServices($strServico)
{
$strArq = null;
switch ($strServico) {
case 'cgu':
$strArq = 'cgu.wsdl';
break;
}
if ($strArq!=null){
$strArq = dirname(__FILE__).'/ws/'.$strArq;
}
return $strArq;
}
}
?>