Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
open-source
sygal-import-ws
Commits
3d4042ea
Commit
3d4042ea
authored
Jan 23, 2018
by
Jean-Philippe Metivier
Browse files
Ajout des accés manquants
parent
9d745a48
Changes
15
Hide whitespace changes
Inline
Side-by-side
module/ImportData/Module.php
0 → 100644
View file @
3d4042ea
<?php
namespace
ImportData
;
use
ZF\Apigility\Provider\ApigilityProviderInterface
;
class
Module
implements
ApigilityProviderInterface
{
public
function
getConfig
()
{
return
include
__DIR__
.
'/config/module.config.php'
;
}
public
function
getAutoloaderConfig
()
{
return
[
'ZF\Apigility\Autoloader'
=>
[
'namespaces'
=>
[
__NAMESPACE__
=>
__DIR__
.
'/src'
,
],
],
];
}
}
module/ImportData/src/V1/Entity/Db/Acteur.php
0 → 100644
View file @
3d4042ea
<?php
namespace
ImportData\V1\Entity\Db
;
/**
* Acteur
*/
class
Acteur
{
protected
$id
;
protected
$sourceId
;
protected
$theseId
;
protected
$roleId
;
protected
$individuId
;
protected
$codeRoleJury
;
protected
$libRoleJury
;
protected
$codeEtablissement
;
protected
$libEtablissement
;
protected
$codeQualite
;
protected
$libQualite
;
protected
$temoinHDR
;
protected
$temoinRapport
;
/**
* @return mixed
*/
public
function
getId
()
{
return
$this
->
id
;
}
/**
* @param mixed $id
*/
public
function
setId
(
$id
)
{
$this
->
id
=
$id
;
}
/**
* @return mixed
*/
public
function
getSourceId
()
{
return
$this
->
sourceId
;
}
/**
* @param mixed $sourceId
*/
public
function
setSourceId
(
$sourceId
)
{
$this
->
sourceId
=
$sourceId
;
}
/**
* @return mixed
*/
public
function
getTheseId
()
{
return
$this
->
theseId
;
}
/**
* @param mixed $theseId
*/
public
function
setTheseId
(
$theseId
)
{
$this
->
theseId
=
$theseId
;
}
/**
* @return mixed
*/
public
function
getRoleId
()
{
return
$this
->
roleId
;
}
/**
* @param mixed $roleId
*/
public
function
setRoleId
(
$roleId
)
{
$this
->
roleId
=
$roleId
;
}
/**
* @return mixed
*/
public
function
getIndividuId
()
{
return
$this
->
individuId
;
}
/**
* @param mixed $individuId
*/
public
function
setIndividuId
(
$individuId
)
{
$this
->
individuId
=
$individuId
;
}
/**
* @return mixed
*/
public
function
getCodeRoleJury
()
{
return
$this
->
codeRoleJury
;
}
/**
* @param mixed $codeRoleJury
*/
public
function
setCodeRoleJury
(
$codeRoleJury
)
{
$this
->
codeRoleJury
=
$codeRoleJury
;
}
/**
* @return mixed
*/
public
function
getLibRoleJury
()
{
return
$this
->
libRoleJury
;
}
/**
* @param mixed $libRoleJury
*/
public
function
setLibRoleJury
(
$libRoleJury
)
{
$this
->
libRoleJury
=
$libRoleJury
;
}
/**
* @return mixed
*/
public
function
getCodeEtablissement
()
{
return
$this
->
codeEtablissement
;
}
/**
* @param mixed $codeEtablissement
*/
public
function
setCodeEtablissement
(
$codeEtablissement
)
{
$this
->
codeEtablissement
=
$codeEtablissement
;
}
/**
* @return mixed
*/
public
function
getLibEtablissement
()
{
return
$this
->
libEtablissement
;
}
/**
* @param mixed $libEtablissement
*/
public
function
setLibEtablissement
(
$libEtablissement
)
{
$this
->
libEtablissement
=
$libEtablissement
;
}
/**
* @return mixed
*/
public
function
getCodeQualite
()
{
return
$this
->
codeQualite
;
}
/**
* @param mixed $codeQualite
*/
public
function
setCodeQualite
(
$codeQualite
)
{
$this
->
codeQualite
=
$codeQualite
;
}
/**
* @return mixed
*/
public
function
getLibQualite
()
{
return
$this
->
libQualite
;
}
/**
* @param mixed $libQualite
*/
public
function
setLibQualite
(
$libQualite
)
{
$this
->
libQualite
=
$libQualite
;
}
/**
* @return mixed
*/
public
function
getTemoinHDR
()
{
return
$this
->
temoinHDR
;
}
/**
* @param mixed $temoinHDR
*/
public
function
setTemoinHDR
(
$temoinHDR
)
{
$this
->
temoinHDR
=
$temoinHDR
;
}
/**
* @return mixed
*/
public
function
getTemoinRapport
()
{
return
$this
->
temoinRapport
;
}
/**
* @param mixed $temoinRapport
*/
public
function
setTemoinRapport
(
$temoinRapport
)
{
$this
->
temoinRapport
=
$temoinRapport
;
}
}
\ No newline at end of file
module/ImportData/src/V1/Entity/Db/Doctorant.php
0 → 100644
View file @
3d4042ea
<?php
namespace
ImportData\V1\Entity\Db
;
/**
* Doctorant
*/
class
Doctorant
{
/**
* @var integer
*/
protected
$id
;
protected
$sourceId
;
protected
$individuId
;
/**
* @return int
*/
public
function
getId
()
{
return
$this
->
id
;
}
/**
* @param int $id
*/
public
function
setId
(
$id
)
{
$this
->
id
=
$id
;
}
/**
* @return mixed
*/
public
function
getSourceId
()
{
return
$this
->
sourceId
;
}
/**
* @param mixed $sourceId
*/
public
function
setSourceId
(
$sourceId
)
{
$this
->
sourceId
=
$sourceId
;
}
/**
* @return mixed
*/
public
function
getIndividuId
()
{
return
$this
->
individuId
;
}
/**
* @param mixed $individuId
*/
public
function
setIndividuId
(
$individuId
)
{
$this
->
individuId
=
$individuId
;
}
}
module/ImportData/src/V1/Entity/Db/Individu.php
0 → 100644
View file @
3d4042ea
<?php
namespace
ImportData\V1\Entity\Db
;
/**
* These
*/
class
Individu
{
protected
$id
;
protected
$sourceId
;
protected
$type
;
protected
$civilite
;
protected
$nomUsuel
;
protected
$nomPatronymique
;
protected
$prenom1
;
protected
$prenom2
;
protected
$prenom3
;
protected
$email
;
protected
$dateNaissance
;
protected
$nationalite
;
/**
* @return mixed
*/
public
function
getId
()
{
return
$this
->
id
;
}
/**
* @param mixed $id
*/
public
function
setId
(
$id
)
{
$this
->
id
=
$id
;
}
/**
* @return mixed
*/
public
function
getSourceId
()
{
return
$this
->
sourceId
;
}
/**
* @param mixed $sourceId
*/
public
function
setSourceId
(
$sourceId
)
{
$this
->
sourceId
=
$sourceId
;
}
/**
* @return mixed
*/
public
function
getType
()
{
return
$this
->
type
;
}
/**
* @param mixed $type
*/
public
function
setType
(
$type
)
{
$this
->
type
=
$type
;
}
/**
* @return mixed
*/
public
function
getCivilite
()
{
return
$this
->
civilite
;
}
/**
* @param mixed $civilite
*/
public
function
setCivilite
(
$civilite
)
{
$this
->
civilite
=
$civilite
;
}
/**
* @return mixed
*/
public
function
getNomUsuel
()
{
return
$this
->
nomUsuel
;
}
/**
* @param mixed $nomUsuel
*/
public
function
setNomUsuel
(
$nomUsuel
)
{
$this
->
nomUsuel
=
$nomUsuel
;
}
/**
* @return mixed
*/
public
function
getNomPatronymique
()
{
return
$this
->
nomPatronymique
;
}
/**
* @param mixed $nomPatronymique
*/
public
function
setNomPatronymique
(
$nomPatronymique
)
{
$this
->
nomPatronymique
=
$nomPatronymique
;
}
/**
* @return mixed
*/
public
function
getPrenom1
()
{
return
$this
->
prenom1
;
}
/**
* @param mixed $prenom1
*/
public
function
setPrenom1
(
$prenom1
)
{
$this
->
prenom1
=
$prenom1
;
}
/**
* @return mixed
*/
public
function
getPrenom2
()
{
return
$this
->
prenom2
;
}
/**
* @param mixed $prenom2
*/
public
function
setPrenom2
(
$prenom2
)
{
$this
->
prenom2
=
$prenom2
;
}
/**
* @return mixed
*/
public
function
getPrenom3
()
{
return
$this
->
prenom3
;
}
/**
* @param mixed $prenom3
*/
public
function
setPrenom3
(
$prenom3
)
{
$this
->
prenom3
=
$prenom3
;
}
/**
* @return mixed
*/
public
function
getEmail
()
{
return
$this
->
email
;
}
/**
* @param mixed $email
*/
public
function
setEmail
(
$email
)
{
$this
->
email
=
$email
;
}
/**
* @return mixed
*/
public
function
getDateNaissance
()
{
return
$this
->
dateNaissance
;
}
/**
* @param mixed $dateNaissance
*/
public
function
setDateNaissance
(
$dateNaissance
)
{
$this
->
dateNaissance
=
$dateNaissance
;
}
/**
* @return mixed
*/
public
function
getNationalite
()
{
return
$this
->
nationalite
;
}
/**
* @param mixed $nationalite
*/
public
function
setNationalite
(
$nationalite
)
{
$this
->
nationalite
=
$nationalite
;
}
}
\ No newline at end of file
module/ImportData/src/V1/Entity/Db/Mapping/ImportData.V1.Entity.Db.Acteur.dcm.xml
0 → 100644
View file @
3d4042ea
<?xml version="1.0" encoding="utf-8"?>
<doctrine-mapping
xmlns=
"http://doctrine-project.org/schemas/orm/doctrine-mapping"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://doctrine-project.org/schemas/orm/doctrine-mapping http://doctrine-project.org/schemas/orm/doctrine-mapping.xsd"
>
<entity
name=
"ImportData\V1\Entity\Db\Acteur"
table=
"APOGEE.OBJECTH_ACTEUR"
>
<id
name=
"id"
type=
"integer"
column=
"ID"
/>
<field
name=
"sourceId"
type=
"string"
column=
"SOURCE_ID"
length=
"6"
nullable=
"true"
/>
<field
name=
"theseId"
type=
"integer"
column=
"THESE_ID"
nullable=
"true"
/>
<field
name=
"roleId"
type=
"string"
column=
"ROLE_ID"
length=
"1"
nullable=
"true"
/>
<field
name=
"codeRoleJury"
type=
"string"
column=
"COD_ROJ_COMPL"
length=
"1"
nullable=
"true"
/>
<field
name=
"libRoleJury"
type=
"string"
column=
"LIB_ROJ_COMPL"
length=
"40"
nullable=
"true"
/>
<field
name=
"individuId"
type=
"integer"
column=
"INDIVIDU_ID"
nullable=
"true"
/>
<field
name=
"codeEtablissement"
type=
"string"
column=
"COD_ETB"
length=
"8"
nullable=
"true"
/>
<field
name=
"libEtablissement"
type=
"string"
column=
"LIB_ETB"
length=
"40"
nullable=
"true"
/>
<field
name=
"codeQualite"
type=
"string"
column=
"COD_CPS"
length=
"10"
nullable=
"true"
/>
<field
name=
"libQualite"
type=
"string"
column=
"LIB_CPS"
length=
"40"
nullable=
"true"
/>
<field
name=
"temoinHDR"
type=
"string"
column=
"TEM_HAB_RCH_PER"
length=
"1"
nullable=
"true"
/>
<field
name=
"temoinRapport"
type=
"string"
column=
"TEM_RAP_RECU"
length=
"1"
nullable=
"true"
/>
</entity>
</doctrine-mapping>
module/ImportData/src/V1/Entity/Db/Mapping/ImportData.V1.Entity.Db.Doctorant.dcm.xml
0 → 100644
View file @
3d4042ea
<?xml version="1.0" encoding="utf-8"?>
<doctrine-mapping
xmlns=
"http://doctrine-project.org/schemas/orm/doctrine-mapping"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://doctrine-project.org/schemas/orm/doctrine-mapping http://doctrine-project.org/schemas/orm/doctrine-mapping.xsd"
>
<entity
name=
"ImportData\V1\Entity\Db\Doctorant"
table=
"APOGEE.OBJECTH_DOCTORANT"
>
<id
name=
"id"
type=
"integer"
column=
"ID"
/>
<field
name=
"sourceId"
type=
"string"
length=
"6"
column=
"SOURCE_ID"
nullable=
"true"
/>
<field
name=
"individuId"
type=
"integer"
column=
"INDIVIDU_ID"
nullable=
"true"
/>
</entity>
</doctrine-mapping>
\ No newline at end of file
module/ImportData/src/V1/Entity/Db/Mapping/ImportData.V1.Entity.Db.Individu.dcm.xml
0 → 100644
View file @
3d4042ea
<?xml version="1.0" encoding="utf-8"?>
<doctrine-mapping
xmlns=
"http://doctrine-project.org/schemas/orm/doctrine-mapping"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://doctrine-project.org/schemas/orm/doctrine-mapping http://doctrine-project.org/schemas/orm/doctrine-mapping.xsd"
>
<entity
name=
"ImportData\V1\Entity\Db\Individu"
table=
"APOGEE.OBJECTH_INDIVIDU"
>
<id
name=
"id"
type=
"integer"
column=
"ID"
/>
<field
name=
"sourceId"
type=
"string"
length=
"6"
column=
"SOURCE_ID"
nullable=
"true"
/>
<field
name=
"type"
type=
"string"
length=
"9"
column=
"TYPE"
nullable=
"true"
/>
<field
name=
"civilite"
type=
"string"
length=
"5"
column=
"CIV"
nullable=
"true"
/>
<field
name=
"nomUsuel"
type=
"string"
length=
"60"
column=
"LIB_NOM_USU_IND"
nullable=
"true"
/>
<field
name=
"nomPatronymique"
type=
"string"
length=
"60"
column=
"LIB_NOM_PAT_IND"
nullable=
"true"
/>
<field
name=
"prenom1"
type=
"string"
length=
"60"
column=
"LIB_PR1_IND"
nullable=
"true"
/>
<field
name=
"prenom2"
type=
"string"
length=
"60"
column=
"LIB_PR2_IND"
nullable=
"true"
/>
<field
name=
"prenom3"
type=
"string"
length=
"60"
column=
"LIB_PR3_IND"
nullable=
"true"
/>
<field
name=
"email"
type=
"string"
length=
"256"
column=
"EMAIL"
nullable=
"true"
/>
<field
name=
"dateNaissance"
type=
"datetime"
column=
"DATE_NAI_IND"
nullable=
"true"
/>
<field
name=
"nationalite"
type=
"string"
length=
"60"
column=
"LIB_NAT"
nullable=
"true"
/>
</entity>
</doctrine-mapping>
module/ImportData/src/V1/Entity/Db/Mapping/ImportData.V1.Entity.Db.Role.dcm.xml
0 → 100644
View file @
3d4042ea
<?xml version="1.0" encoding="utf-8"?>
<doctrine-mapping
xmlns=
"http://doctrine-project.org/schemas/orm/doctrine-mapping"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://doctrine-project.org/schemas/orm/doctrine-mapping http://doctrine-project.org/schemas/orm/doctrine-mapping.xsd"
>
<entity
name=
"ImportData\V1\Entity\Db\Role"
table=
"APOGEE.OBJECTH_ROLE"
>
<id
name=