~ubuntu-branches/ubuntu/hardy/lasso/hardy

« back to all changes in this revision

Viewing changes to java/Saml2Assertion.java

  • Committer: Bazaar Package Importer
  • Author(s): Michael Bienia
  • Date: 2007-07-31 21:35:26 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070731213526-oc6jw5mprcd5tjyy
Tags: 2.0.0-1ubuntu1
* Merge from debian unstable. Remaining changes:
  + debian/control:
    - Modify Maintainer value to match DebianMaintainerField spec.
* debian/rules:
  + Add CC=gcc-4.2 to the configure call else configure won't find jni.h
    from libgcj8-dev.
* configure{,.ac}:
  + Add missing quotes around the value for PHP[45]_LIBS.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* ----------------------------------------------------------------------------
2
2
 * This file was automatically generated by SWIG (http://www.swig.org).
3
 
 * Version 1.3.28
 
3
 * Version 1.3.31
4
4
 *
5
5
 * Do not make changes to this file unless you know what you are doing--modify
6
6
 * the SWIG interface file instead.
26
26
}
27
27
 
28
28
  public void setVersion(String value) {
29
 
    lassoJNI.Saml2Assertion_Version_set(swigCPtr, value);
 
29
    lassoJNI.Saml2Assertion_version_set(swigCPtr, this, value);
30
30
  }
31
31
 
32
32
  public String getVersion() {
33
 
    return lassoJNI.Saml2Assertion_Version_get(swigCPtr);
 
33
    return lassoJNI.Saml2Assertion_version_get(swigCPtr, this);
34
34
  }
35
35
 
36
36
  public void setID(String value) {
37
 
    lassoJNI.Saml2Assertion_ID_set(swigCPtr, value);
 
37
    lassoJNI.Saml2Assertion_iD_set(swigCPtr, this, value);
38
38
  }
39
39
 
40
40
  public String getID() {
41
 
    return lassoJNI.Saml2Assertion_ID_get(swigCPtr);
 
41
    return lassoJNI.Saml2Assertion_iD_get(swigCPtr, this);
42
42
  }
43
43
 
44
44
  public void setIssueInstant(String value) {
45
 
    lassoJNI.Saml2Assertion_issueInstant_set(swigCPtr, value);
 
45
    lassoJNI.Saml2Assertion_issueInstant_set(swigCPtr, this, value);
46
46
  }
47
47
 
48
48
  public String getIssueInstant() {
49
 
    return lassoJNI.Saml2Assertion_issueInstant_get(swigCPtr);
 
49
    return lassoJNI.Saml2Assertion_issueInstant_get(swigCPtr, this);
50
50
  }
51
51
 
52
52
  public void setIssuer(Saml2NameID value) {
53
 
    lassoJNI.Saml2Assertion_issuer_set(swigCPtr, Saml2NameID.getCPtr(value));
 
53
    lassoJNI.Saml2Assertion_issuer_set(swigCPtr, this, Saml2NameID.getCPtr(value), value);
54
54
  }
55
55
 
56
56
  public Saml2NameID getIssuer() {
57
 
    long cPtr = lassoJNI.Saml2Assertion_issuer_get(swigCPtr);
 
57
    long cPtr = lassoJNI.Saml2Assertion_issuer_get(swigCPtr, this);
58
58
    return (cPtr == 0) ? null : new Saml2NameID(cPtr, false);
59
59
  }
60
60
 
61
61
  public void setSubject(Saml2Subject value) {
62
 
    lassoJNI.Saml2Assertion_subject_set(swigCPtr, Saml2Subject.getCPtr(value));
 
62
    lassoJNI.Saml2Assertion_subject_set(swigCPtr, this, Saml2Subject.getCPtr(value), value);
63
63
  }
64
64
 
65
65
  public Saml2Subject getSubject() {
66
 
    long cPtr = lassoJNI.Saml2Assertion_subject_get(swigCPtr);
 
66
    long cPtr = lassoJNI.Saml2Assertion_subject_get(swigCPtr, this);
67
67
    return (cPtr == 0) ? null : new Saml2Subject(cPtr, false);
68
68
  }
69
69
 
70
70
  public void setConditions(Saml2Conditions value) {
71
 
    lassoJNI.Saml2Assertion_conditions_set(swigCPtr, Saml2Conditions.getCPtr(value));
 
71
    lassoJNI.Saml2Assertion_conditions_set(swigCPtr, this, Saml2Conditions.getCPtr(value), value);
72
72
  }
73
73
 
74
74
  public Saml2Conditions getConditions() {
75
 
    long cPtr = lassoJNI.Saml2Assertion_conditions_get(swigCPtr);
 
75
    long cPtr = lassoJNI.Saml2Assertion_conditions_get(swigCPtr, this);
76
76
    return (cPtr == 0) ? null : new Saml2Conditions(cPtr, false);
77
77
  }
78
78
 
79
79
  public void setAdvice(Saml2Advice value) {
80
 
    lassoJNI.Saml2Assertion_advice_set(swigCPtr, Saml2Advice.getCPtr(value));
 
80
    lassoJNI.Saml2Assertion_advice_set(swigCPtr, this, Saml2Advice.getCPtr(value), value);
81
81
  }
82
82
 
83
83
  public Saml2Advice getAdvice() {
84
 
    long cPtr = lassoJNI.Saml2Assertion_advice_get(swigCPtr);
 
84
    long cPtr = lassoJNI.Saml2Assertion_advice_get(swigCPtr, this);
85
85
    return (cPtr == 0) ? null : new Saml2Advice(cPtr, false);
86
86
  }
87
87
 
 
88
  public void setAuthnStatement(NodeList value) {
 
89
    lassoJNI.Saml2Assertion_authnStatement_set(swigCPtr, this, NodeList.getCPtr(value), value);
 
90
  }
 
91
 
 
92
  public NodeList getAuthnStatement() {
 
93
    long cPtr = lassoJNI.Saml2Assertion_authnStatement_get(swigCPtr, this);
 
94
    return (cPtr == 0) ? null : new NodeList(cPtr, false);
 
95
  }
 
96
 
88
97
  public Saml2Assertion() {
89
98
    this(lassoJNI.new_Saml2Assertion(), true);
90
99
  }
91
100
 
92
101
  public String dump() {
93
 
    return lassoJNI.Saml2Assertion_dump(swigCPtr);
 
102
    return lassoJNI.Saml2Assertion_dump(swigCPtr, this);
94
103
  }
95
104
 
96
105
}