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

« back to all changes in this revision

Viewing changes to java/Samlp2AssertionIDRequest.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.
25
25
  super.delete();
26
26
}
27
27
 
28
 
  public void setAssertionIDRef(String value) {
29
 
    lassoJNI.Samlp2AssertionIDRequest_AssertionIDRef_set(swigCPtr, value);
 
28
  public void setAssertionIdRef(String value) {
 
29
    lassoJNI.Samlp2AssertionIDRequest_assertionIdRef_set(swigCPtr, this, value);
30
30
  }
31
31
 
32
 
  public String getAssertionIDRef() {
33
 
    return lassoJNI.Samlp2AssertionIDRequest_AssertionIDRef_get(swigCPtr);
 
32
  public String getAssertionIdRef() {
 
33
    return lassoJNI.Samlp2AssertionIDRequest_assertionIdRef_get(swigCPtr, this);
34
34
  }
35
35
 
36
36
  public void setIssuer(Saml2NameID value) {
37
 
    lassoJNI.Samlp2AssertionIDRequest_issuer_set(swigCPtr, Saml2NameID.getCPtr(value));
 
37
    lassoJNI.Samlp2AssertionIDRequest_issuer_set(swigCPtr, this, Saml2NameID.getCPtr(value), value);
38
38
  }
39
39
 
40
40
  public Saml2NameID getIssuer() {
41
 
    long cPtr = lassoJNI.Samlp2AssertionIDRequest_issuer_get(swigCPtr);
 
41
    long cPtr = lassoJNI.Samlp2AssertionIDRequest_issuer_get(swigCPtr, this);
42
42
    return (cPtr == 0) ? null : new Saml2NameID(cPtr, false);
43
43
  }
44
44
 
45
45
  public void setExtensions(Samlp2Extensions value) {
46
 
    lassoJNI.Samlp2AssertionIDRequest_Extensions_set(swigCPtr, Samlp2Extensions.getCPtr(value));
 
46
    lassoJNI.Samlp2AssertionIDRequest_extensions_set(swigCPtr, this, Samlp2Extensions.getCPtr(value), value);
47
47
  }
48
48
 
49
49
  public Samlp2Extensions getExtensions() {
50
 
    long cPtr = lassoJNI.Samlp2AssertionIDRequest_Extensions_get(swigCPtr);
 
50
    long cPtr = lassoJNI.Samlp2AssertionIDRequest_extensions_get(swigCPtr, this);
51
51
    return (cPtr == 0) ? null : new Samlp2Extensions(cPtr, false);
52
52
  }
53
53
 
54
54
  public void setID(String value) {
55
 
    lassoJNI.Samlp2AssertionIDRequest_ID_set(swigCPtr, value);
 
55
    lassoJNI.Samlp2AssertionIDRequest_iD_set(swigCPtr, this, value);
56
56
  }
57
57
 
58
58
  public String getID() {
59
 
    return lassoJNI.Samlp2AssertionIDRequest_ID_get(swigCPtr);
 
59
    return lassoJNI.Samlp2AssertionIDRequest_iD_get(swigCPtr, this);
60
60
  }
61
61
 
62
62
  public void setVersion(String value) {
63
 
    lassoJNI.Samlp2AssertionIDRequest_Version_set(swigCPtr, value);
 
63
    lassoJNI.Samlp2AssertionIDRequest_version_set(swigCPtr, this, value);
64
64
  }
65
65
 
66
66
  public String getVersion() {
67
 
    return lassoJNI.Samlp2AssertionIDRequest_Version_get(swigCPtr);
 
67
    return lassoJNI.Samlp2AssertionIDRequest_version_get(swigCPtr, this);
68
68
  }
69
69
 
70
70
  public void setIssueInstant(String value) {
71
 
    lassoJNI.Samlp2AssertionIDRequest_issueInstant_set(swigCPtr, value);
 
71
    lassoJNI.Samlp2AssertionIDRequest_issueInstant_set(swigCPtr, this, value);
72
72
  }
73
73
 
74
74
  public String getIssueInstant() {
75
 
    return lassoJNI.Samlp2AssertionIDRequest_issueInstant_get(swigCPtr);
 
75
    return lassoJNI.Samlp2AssertionIDRequest_issueInstant_get(swigCPtr, this);
76
76
  }
77
77
 
78
78
  public void setDestination(String value) {
79
 
    lassoJNI.Samlp2AssertionIDRequest_Destination_set(swigCPtr, value);
 
79
    lassoJNI.Samlp2AssertionIDRequest_destination_set(swigCPtr, this, value);
80
80
  }
81
81
 
82
82
  public String getDestination() {
83
 
    return lassoJNI.Samlp2AssertionIDRequest_Destination_get(swigCPtr);
 
83
    return lassoJNI.Samlp2AssertionIDRequest_destination_get(swigCPtr, this);
84
84
  }
85
85
 
86
86
  public void setConsent(String value) {
87
 
    lassoJNI.Samlp2AssertionIDRequest_Consent_set(swigCPtr, value);
 
87
    lassoJNI.Samlp2AssertionIDRequest_consent_set(swigCPtr, this, value);
88
88
  }
89
89
 
90
90
  public String getConsent() {
91
 
    return lassoJNI.Samlp2AssertionIDRequest_Consent_get(swigCPtr);
 
91
    return lassoJNI.Samlp2AssertionIDRequest_consent_get(swigCPtr, this);
92
92
  }
93
93
 
94
94
  public Samlp2AssertionIDRequest() {
96
96
  }
97
97
 
98
98
  public String dump() {
99
 
    return lassoJNI.Samlp2AssertionIDRequest_dump(swigCPtr);
 
99
    return lassoJNI.Samlp2AssertionIDRequest_dump(swigCPtr, this);
100
100
  }
101
101
 
102
102
}