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

« back to all changes in this revision

Viewing changes to java/LibAssertion.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 setAdvice(SamlAdvice value) {
29
 
    lassoJNI.LibAssertion_advice_set(swigCPtr, SamlAdvice.getCPtr(value));
 
29
    lassoJNI.LibAssertion_advice_set(swigCPtr, this, SamlAdvice.getCPtr(value), value);
30
30
  }
31
31
 
32
32
  public SamlAdvice getAdvice() {
33
 
    long cPtr = lassoJNI.LibAssertion_advice_get(swigCPtr);
 
33
    long cPtr = lassoJNI.LibAssertion_advice_get(swigCPtr, this);
34
34
    return (cPtr == 0) ? null : new SamlAdvice(cPtr, false);
35
35
  }
36
36
 
37
37
  public void setAssertionId(String value) {
38
 
    lassoJNI.LibAssertion_assertionId_set(swigCPtr, value);
 
38
    lassoJNI.LibAssertion_assertionId_set(swigCPtr, this, value);
39
39
  }
40
40
 
41
41
  public String getAssertionId() {
42
 
    return lassoJNI.LibAssertion_assertionId_get(swigCPtr);
 
42
    return lassoJNI.LibAssertion_assertionId_get(swigCPtr, this);
43
43
  }
44
44
 
45
45
  public void setAttributeStatement(SamlAttributeStatement value) {
46
 
    lassoJNI.LibAssertion_attributeStatement_set(swigCPtr, SamlAttributeStatement.getCPtr(value));
 
46
    lassoJNI.LibAssertion_attributeStatement_set(swigCPtr, this, SamlAttributeStatement.getCPtr(value), value);
47
47
  }
48
48
 
49
49
  public SamlAttributeStatement getAttributeStatement() {
50
 
    long cPtr = lassoJNI.LibAssertion_attributeStatement_get(swigCPtr);
 
50
    long cPtr = lassoJNI.LibAssertion_attributeStatement_get(swigCPtr, this);
51
51
    return (cPtr == 0) ? null : new SamlAttributeStatement(cPtr, false);
52
52
  }
53
53
 
54
54
  public void setAuthenticationStatement(SamlAuthenticationStatement value) {
55
 
    lassoJNI.LibAssertion_authenticationStatement_set(swigCPtr, SamlAuthenticationStatement.getCPtr(value));
 
55
    lassoJNI.LibAssertion_authenticationStatement_set(swigCPtr, this, SamlAuthenticationStatement.getCPtr(value), value);
56
56
  }
57
57
 
58
58
  public SamlAuthenticationStatement getAuthenticationStatement() {
59
 
    long cPtr = lassoJNI.LibAssertion_authenticationStatement_get(swigCPtr);
 
59
    long cPtr = lassoJNI.LibAssertion_authenticationStatement_get(swigCPtr, this);
60
60
    return (cPtr == 0) ? null : new SamlAuthenticationStatement(cPtr, false);
61
61
  }
62
62
 
63
63
  public void setCertificateFile(String value) {
64
 
    lassoJNI.LibAssertion_certificateFile_set(swigCPtr, value);
 
64
    lassoJNI.LibAssertion_certificateFile_set(swigCPtr, this, value);
65
65
  }
66
66
 
67
67
  public String getCertificateFile() {
68
 
    return lassoJNI.LibAssertion_certificateFile_get(swigCPtr);
 
68
    return lassoJNI.LibAssertion_certificateFile_get(swigCPtr, this);
69
69
  }
70
70
 
71
71
  public void setConditions(SamlConditions value) {
72
 
    lassoJNI.LibAssertion_conditions_set(swigCPtr, SamlConditions.getCPtr(value));
 
72
    lassoJNI.LibAssertion_conditions_set(swigCPtr, this, SamlConditions.getCPtr(value), value);
73
73
  }
74
74
 
75
75
  public SamlConditions getConditions() {
76
 
    long cPtr = lassoJNI.LibAssertion_conditions_get(swigCPtr);
 
76
    long cPtr = lassoJNI.LibAssertion_conditions_get(swigCPtr, this);
77
77
    return (cPtr == 0) ? null : new SamlConditions(cPtr, false);
78
78
  }
79
79
 
80
80
  public void setIssueInstant(String value) {
81
 
    lassoJNI.LibAssertion_issueInstant_set(swigCPtr, value);
 
81
    lassoJNI.LibAssertion_issueInstant_set(swigCPtr, this, value);
82
82
  }
83
83
 
84
84
  public String getIssueInstant() {
85
 
    return lassoJNI.LibAssertion_issueInstant_get(swigCPtr);
 
85
    return lassoJNI.LibAssertion_issueInstant_get(swigCPtr, this);
86
86
  }
87
87
 
88
88
  public void setIssuer(String value) {
89
 
    lassoJNI.LibAssertion_issuer_set(swigCPtr, value);
 
89
    lassoJNI.LibAssertion_issuer_set(swigCPtr, this, value);
90
90
  }
91
91
 
92
92
  public String getIssuer() {
93
 
    return lassoJNI.LibAssertion_issuer_get(swigCPtr);
 
93
    return lassoJNI.LibAssertion_issuer_get(swigCPtr, this);
94
94
  }
95
95
 
96
96
  public void setMajorVersion(int value) {
97
 
    lassoJNI.LibAssertion_majorVersion_set(swigCPtr, value);
 
97
    lassoJNI.LibAssertion_majorVersion_set(swigCPtr, this, value);
98
98
  }
99
99
 
100
100
  public int getMajorVersion() {
101
 
    return lassoJNI.LibAssertion_majorVersion_get(swigCPtr);
 
101
    return lassoJNI.LibAssertion_majorVersion_get(swigCPtr, this);
102
102
  }
103
103
 
104
104
  public void setMinorVersion(int value) {
105
 
    lassoJNI.LibAssertion_minorVersion_set(swigCPtr, value);
 
105
    lassoJNI.LibAssertion_minorVersion_set(swigCPtr, this, value);
106
106
  }
107
107
 
108
108
  public int getMinorVersion() {
109
 
    return lassoJNI.LibAssertion_minorVersion_get(swigCPtr);
 
109
    return lassoJNI.LibAssertion_minorVersion_get(swigCPtr, this);
110
110
  }
111
111
 
112
112
  public void setPrivateKeyFile(String value) {
113
 
    lassoJNI.LibAssertion_privateKeyFile_set(swigCPtr, value);
 
113
    lassoJNI.LibAssertion_privateKeyFile_set(swigCPtr, this, value);
114
114
  }
115
115
 
116
116
  public String getPrivateKeyFile() {
117
 
    return lassoJNI.LibAssertion_privateKeyFile_get(swigCPtr);
 
117
    return lassoJNI.LibAssertion_privateKeyFile_get(swigCPtr, this);
118
118
  }
119
119
 
120
120
  public void setSignMethod(int value) {
121
 
    lassoJNI.LibAssertion_signMethod_set(swigCPtr, value);
 
121
    lassoJNI.LibAssertion_signMethod_set(swigCPtr, this, value);
122
122
  }
123
123
 
124
124
  public int getSignMethod() {
125
 
    return lassoJNI.LibAssertion_signMethod_get(swigCPtr);
 
125
    return lassoJNI.LibAssertion_signMethod_get(swigCPtr, this);
126
126
  }
127
127
 
128
128
  public void setSignType(SWIGTYPE_p_LassoSignatureType value) {
129
 
    lassoJNI.LibAssertion_signType_set(swigCPtr, SWIGTYPE_p_LassoSignatureType.getCPtr(value));
 
129
    lassoJNI.LibAssertion_signType_set(swigCPtr, this, SWIGTYPE_p_LassoSignatureType.getCPtr(value));
130
130
  }
131
131
 
132
132
  public SWIGTYPE_p_LassoSignatureType getSignType() {
133
 
    return new SWIGTYPE_p_LassoSignatureType(lassoJNI.LibAssertion_signType_get(swigCPtr), true);
 
133
    return new SWIGTYPE_p_LassoSignatureType(lassoJNI.LibAssertion_signType_get(swigCPtr, this), true);
134
134
  }
135
135
 
136
136
  public void setSubjectStatement(SamlSubjectStatement value) {
137
 
    lassoJNI.LibAssertion_subjectStatement_set(swigCPtr, SamlSubjectStatement.getCPtr(value));
 
137
    lassoJNI.LibAssertion_subjectStatement_set(swigCPtr, this, SamlSubjectStatement.getCPtr(value), value);
138
138
  }
139
139
 
140
140
  public SamlSubjectStatement getSubjectStatement() {
141
 
    long cPtr = lassoJNI.LibAssertion_subjectStatement_get(swigCPtr);
 
141
    long cPtr = lassoJNI.LibAssertion_subjectStatement_get(swigCPtr, this);
142
142
    return (cPtr == 0) ? null : new SamlSubjectStatement(cPtr, false);
143
143
  }
144
144
 
152
152
  }
153
153
 
154
154
  public String dump() {
155
 
    return lassoJNI.LibAssertion_dump(swigCPtr);
 
155
    return lassoJNI.LibAssertion_dump(swigCPtr, this);
156
156
  }
157
157
 
158
158
}