~ubuntu-branches/ubuntu/intrepid/lasso/intrepid-updates

« back to all changes in this revision

Viewing changes to swig/saml-2.0/saml2_proxy_restriction.i

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2006-07-11 10:01:32 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060711100132-e50ymjc54bsizza6
Tags: 0.6.5-2ubuntu1
* Synchronize with Debian unstable.
* Convert to updated Python policy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
#ifndef SWIGPHP4
 
3
%rename(Saml2ProxyRestriction) LassoSaml2ProxyRestriction;
 
4
#endif
 
5
typedef struct {
 
6
        char *Audience;
 
7
        char *Count;
 
8
} LassoSaml2ProxyRestriction;
 
9
%extend LassoSaml2ProxyRestriction {
 
10
 
 
11
        /* inherited from Saml2ConditionAbstract */
 
12
 
 
13
        /* Constructor, Destructor & Static Methods */
 
14
        LassoSaml2ProxyRestriction();
 
15
        ~LassoSaml2ProxyRestriction();
 
16
 
 
17
        /* Method inherited from LassoNode */
 
18
        %newobject dump;
 
19
        char* dump();
 
20
}
 
21
 
 
22
%{
 
23
 
 
24
 
 
25
/* Constructors, destructors & static methods implementations */
 
26
 
 
27
#define new_LassoSaml2ProxyRestriction lasso_saml2_proxy_restriction_new
 
28
#define delete_LassoSaml2ProxyRestriction(self) lasso_node_destroy(LASSO_NODE(self))
 
29
 
 
30
/* Implementations of methods inherited from LassoNode */
 
31
 
 
32
#define LassoSaml2ProxyRestriction_dump(self) lasso_node_dump(LASSO_NODE(self))
 
33
 
 
34
%}
 
35