~ddellav/ubuntu/wily/python-pysaml2/debian-merge

« back to all changes in this revision

Viewing changes to src/saml2/entity_category/at_egov_pvp2.py

  • Committer: Package Import Robot
  • Author(s): Thomas Goirand
  • Date: 2014-09-08 16:11:53 UTC
  • Revision ID: package-import@ubuntu.com-20140908161153-vms9r4gu0oz4v4ai
Tags: upstream-2.0.0
ImportĀ upstreamĀ versionĀ 2.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
__author__ = 'rhoerbe'  #2013-09-05
 
2
# Entity Categories specifying the PVP eGov Token as of "PVP2-Allgemein V2.1.0", http://www.ref.gv.at/
 
3
 
 
4
 
 
5
EGOVTOKEN = ["PVP-VERSION",
 
6
             "PVP-PRINCIPALNAME",
 
7
             "PVP-GIVENNAME",
 
8
             "PVP-BIRTHDATE",
 
9
             "PVP-USERID",
 
10
             "PVP-GID",
 
11
             "PVP-BPK",
 
12
             "PVP-MAIL",
 
13
             "PVP-TEL",
 
14
             "PVP-PARTICIPANT-ID",
 
15
             "PVP-PARTICIPANT-OKZ",
 
16
             "PVP-OU-OKZ",
 
17
             "PVP-OU",
 
18
             "PVP-OU-GV-OU-ID",
 
19
             "PVP-FUNCTION",
 
20
             "PVP-ROLES",
 
21
]
 
22
 
 
23
 
 
24
CHARGEATTR = ["PVP-INVOICE-RECPT-ID",
 
25
              "PVP-COST-CENTER-ID",
 
26
              "PVP-CHARGE-CODE",
 
27
]
 
28
 
 
29
# all eGov Token attributes except (1) transaction charging and (2) chaining
 
30
PVP2 = "http://www.ref.gv.at/ns/names/agiz/pvp/egovtoken"
 
31
# transaction charging extension
 
32
PVP2CHARGE = "http://www.ref.gv.at/ns/names/agiz/pvp/egovtoken-charge"
 
33
 
 
34
RELEASE = {
 
35
    PVP2: EGOVTOKEN,
 
36
    PVP2CHARGE: CHARGEATTR,
 
37
}