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

« back to all changes in this revision

Viewing changes to java/Samlp2RequestAbstract.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 setID(String value) {
29
 
    lassoJNI.Samlp2RequestAbstract_ID_set(swigCPtr, value);
 
29
    lassoJNI.Samlp2RequestAbstract_iD_set(swigCPtr, this, value);
30
30
  }
31
31
 
32
32
  public String getID() {
33
 
    return lassoJNI.Samlp2RequestAbstract_ID_get(swigCPtr);
 
33
    return lassoJNI.Samlp2RequestAbstract_iD_get(swigCPtr, this);
34
34
  }
35
35
 
36
36
  public void setVersion(String value) {
37
 
    lassoJNI.Samlp2RequestAbstract_Version_set(swigCPtr, value);
 
37
    lassoJNI.Samlp2RequestAbstract_version_set(swigCPtr, this, value);
38
38
  }
39
39
 
40
40
  public String getVersion() {
41
 
    return lassoJNI.Samlp2RequestAbstract_Version_get(swigCPtr);
 
41
    return lassoJNI.Samlp2RequestAbstract_version_get(swigCPtr, this);
42
42
  }
43
43
 
44
44
  public void setIssueInstant(String value) {
45
 
    lassoJNI.Samlp2RequestAbstract_issueInstant_set(swigCPtr, value);
 
45
    lassoJNI.Samlp2RequestAbstract_issueInstant_set(swigCPtr, this, value);
46
46
  }
47
47
 
48
48
  public String getIssueInstant() {
49
 
    return lassoJNI.Samlp2RequestAbstract_issueInstant_get(swigCPtr);
 
49
    return lassoJNI.Samlp2RequestAbstract_issueInstant_get(swigCPtr, this);
50
50
  }
51
51
 
52
52
  public void setDestination(String value) {
53
 
    lassoJNI.Samlp2RequestAbstract_Destination_set(swigCPtr, value);
 
53
    lassoJNI.Samlp2RequestAbstract_destination_set(swigCPtr, this, value);
54
54
  }
55
55
 
56
56
  public String getDestination() {
57
 
    return lassoJNI.Samlp2RequestAbstract_Destination_get(swigCPtr);
 
57
    return lassoJNI.Samlp2RequestAbstract_destination_get(swigCPtr, this);
58
58
  }
59
59
 
60
60
  public void setConsent(String value) {
61
 
    lassoJNI.Samlp2RequestAbstract_Consent_set(swigCPtr, value);
 
61
    lassoJNI.Samlp2RequestAbstract_consent_set(swigCPtr, this, value);
62
62
  }
63
63
 
64
64
  public String getConsent() {
65
 
    return lassoJNI.Samlp2RequestAbstract_Consent_get(swigCPtr);
 
65
    return lassoJNI.Samlp2RequestAbstract_consent_get(swigCPtr, this);
66
66
  }
67
67
 
68
68
  public void setIssuer(Saml2NameID value) {
69
 
    lassoJNI.Samlp2RequestAbstract_issuer_set(swigCPtr, Saml2NameID.getCPtr(value));
 
69
    lassoJNI.Samlp2RequestAbstract_issuer_set(swigCPtr, this, Saml2NameID.getCPtr(value), value);
70
70
  }
71
71
 
72
72
  public Saml2NameID getIssuer() {
73
 
    long cPtr = lassoJNI.Samlp2RequestAbstract_issuer_get(swigCPtr);
 
73
    long cPtr = lassoJNI.Samlp2RequestAbstract_issuer_get(swigCPtr, this);
74
74
    return (cPtr == 0) ? null : new Saml2NameID(cPtr, false);
75
75
  }
76
76
 
77
77
  public void setExtensions(Samlp2Extensions value) {
78
 
    lassoJNI.Samlp2RequestAbstract_extensions_set(swigCPtr, Samlp2Extensions.getCPtr(value));
 
78
    lassoJNI.Samlp2RequestAbstract_extensions_set(swigCPtr, this, Samlp2Extensions.getCPtr(value), value);
79
79
  }
80
80
 
81
81
  public Samlp2Extensions getExtensions() {
82
 
    long cPtr = lassoJNI.Samlp2RequestAbstract_extensions_get(swigCPtr);
 
82
    long cPtr = lassoJNI.Samlp2RequestAbstract_extensions_get(swigCPtr, this);
83
83
    return (cPtr == 0) ? null : new Samlp2Extensions(cPtr, false);
84
84
  }
85
85
 
88
88
  }
89
89
 
90
90
  public String dump() {
91
 
    return lassoJNI.Samlp2RequestAbstract_dump(swigCPtr);
 
91
    return lassoJNI.Samlp2RequestAbstract_dump(swigCPtr, this);
92
92
  }
93
93
 
94
94
}