~ubuntu-branches/ubuntu/intrepid/lasso/intrepid-security

« back to all changes in this revision

Viewing changes to java/Samlp2ManageNameIDRequest.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 setNewID(String value) {
29
 
    lassoJNI.Samlp2ManageNameIDRequest_NewID_set(swigCPtr, value);
 
28
  public void setNewId(String value) {
 
29
    lassoJNI.Samlp2ManageNameIDRequest_newId_set(swigCPtr, this, value);
30
30
  }
31
31
 
32
 
  public String getNewID() {
33
 
    return lassoJNI.Samlp2ManageNameIDRequest_NewID_get(swigCPtr);
 
32
  public String getNewId() {
 
33
    return lassoJNI.Samlp2ManageNameIDRequest_newId_get(swigCPtr, this);
34
34
  }
35
35
 
36
36
  public void setNameID(Saml2NameID value) {
37
 
    lassoJNI.Samlp2ManageNameIDRequest_nameID_set(swigCPtr, Saml2NameID.getCPtr(value));
 
37
    lassoJNI.Samlp2ManageNameIDRequest_nameID_set(swigCPtr, this, Saml2NameID.getCPtr(value), value);
38
38
  }
39
39
 
40
40
  public Saml2NameID getNameID() {
41
 
    long cPtr = lassoJNI.Samlp2ManageNameIDRequest_nameID_get(swigCPtr);
 
41
    long cPtr = lassoJNI.Samlp2ManageNameIDRequest_nameID_get(swigCPtr, this);
42
42
    return (cPtr == 0) ? null : new Saml2NameID(cPtr, false);
43
43
  }
44
44
 
45
45
  public void setEncryptedID(Saml2EncryptedElement value) {
46
 
    lassoJNI.Samlp2ManageNameIDRequest_encryptedID_set(swigCPtr, Saml2EncryptedElement.getCPtr(value));
 
46
    lassoJNI.Samlp2ManageNameIDRequest_encryptedID_set(swigCPtr, this, Saml2EncryptedElement.getCPtr(value), value);
47
47
  }
48
48
 
49
49
  public Saml2EncryptedElement getEncryptedID() {
50
 
    long cPtr = lassoJNI.Samlp2ManageNameIDRequest_encryptedID_get(swigCPtr);
 
50
    long cPtr = lassoJNI.Samlp2ManageNameIDRequest_encryptedID_get(swigCPtr, this);
51
51
    return (cPtr == 0) ? null : new Saml2EncryptedElement(cPtr, false);
52
52
  }
53
53
 
54
54
  public void setNewEncryptedID(Saml2EncryptedElement value) {
55
 
    lassoJNI.Samlp2ManageNameIDRequest_newEncryptedID_set(swigCPtr, Saml2EncryptedElement.getCPtr(value));
 
55
    lassoJNI.Samlp2ManageNameIDRequest_newEncryptedID_set(swigCPtr, this, Saml2EncryptedElement.getCPtr(value), value);
56
56
  }
57
57
 
58
58
  public Saml2EncryptedElement getNewEncryptedID() {
59
 
    long cPtr = lassoJNI.Samlp2ManageNameIDRequest_newEncryptedID_get(swigCPtr);
 
59
    long cPtr = lassoJNI.Samlp2ManageNameIDRequest_newEncryptedID_get(swigCPtr, this);
60
60
    return (cPtr == 0) ? null : new Saml2EncryptedElement(cPtr, false);
61
61
  }
62
62
 
63
63
  public void setTerminate(Samlp2Terminate value) {
64
 
    lassoJNI.Samlp2ManageNameIDRequest_terminate_set(swigCPtr, Samlp2Terminate.getCPtr(value));
 
64
    lassoJNI.Samlp2ManageNameIDRequest_terminate_set(swigCPtr, this, Samlp2Terminate.getCPtr(value), value);
65
65
  }
66
66
 
67
67
  public Samlp2Terminate getTerminate() {
68
 
    long cPtr = lassoJNI.Samlp2ManageNameIDRequest_terminate_get(swigCPtr);
 
68
    long cPtr = lassoJNI.Samlp2ManageNameIDRequest_terminate_get(swigCPtr, this);
69
69
    return (cPtr == 0) ? null : new Samlp2Terminate(cPtr, false);
70
70
  }
71
71
 
72
72
  public void setIssuer(Saml2NameID value) {
73
 
    lassoJNI.Samlp2ManageNameIDRequest_issuer_set(swigCPtr, Saml2NameID.getCPtr(value));
 
73
    lassoJNI.Samlp2ManageNameIDRequest_issuer_set(swigCPtr, this, Saml2NameID.getCPtr(value), value);
74
74
  }
75
75
 
76
76
  public Saml2NameID getIssuer() {
77
 
    long cPtr = lassoJNI.Samlp2ManageNameIDRequest_issuer_get(swigCPtr);
 
77
    long cPtr = lassoJNI.Samlp2ManageNameIDRequest_issuer_get(swigCPtr, this);
78
78
    return (cPtr == 0) ? null : new Saml2NameID(cPtr, false);
79
79
  }
80
80
 
81
81
  public void setExtensions(Samlp2Extensions value) {
82
 
    lassoJNI.Samlp2ManageNameIDRequest_Extensions_set(swigCPtr, Samlp2Extensions.getCPtr(value));
 
82
    lassoJNI.Samlp2ManageNameIDRequest_extensions_set(swigCPtr, this, Samlp2Extensions.getCPtr(value), value);
83
83
  }
84
84
 
85
85
  public Samlp2Extensions getExtensions() {
86
 
    long cPtr = lassoJNI.Samlp2ManageNameIDRequest_Extensions_get(swigCPtr);
 
86
    long cPtr = lassoJNI.Samlp2ManageNameIDRequest_extensions_get(swigCPtr, this);
87
87
    return (cPtr == 0) ? null : new Samlp2Extensions(cPtr, false);
88
88
  }
89
89
 
90
90
  public void setID(String value) {
91
 
    lassoJNI.Samlp2ManageNameIDRequest_ID_set(swigCPtr, value);
 
91
    lassoJNI.Samlp2ManageNameIDRequest_iD_set(swigCPtr, this, value);
92
92
  }
93
93
 
94
94
  public String getID() {
95
 
    return lassoJNI.Samlp2ManageNameIDRequest_ID_get(swigCPtr);
 
95
    return lassoJNI.Samlp2ManageNameIDRequest_iD_get(swigCPtr, this);
96
96
  }
97
97
 
98
98
  public void setVersion(String value) {
99
 
    lassoJNI.Samlp2ManageNameIDRequest_Version_set(swigCPtr, value);
 
99
    lassoJNI.Samlp2ManageNameIDRequest_version_set(swigCPtr, this, value);
100
100
  }
101
101
 
102
102
  public String getVersion() {
103
 
    return lassoJNI.Samlp2ManageNameIDRequest_Version_get(swigCPtr);
 
103
    return lassoJNI.Samlp2ManageNameIDRequest_version_get(swigCPtr, this);
104
104
  }
105
105
 
106
106
  public void setIssueInstant(String value) {
107
 
    lassoJNI.Samlp2ManageNameIDRequest_issueInstant_set(swigCPtr, value);
 
107
    lassoJNI.Samlp2ManageNameIDRequest_issueInstant_set(swigCPtr, this, value);
108
108
  }
109
109
 
110
110
  public String getIssueInstant() {
111
 
    return lassoJNI.Samlp2ManageNameIDRequest_issueInstant_get(swigCPtr);
 
111
    return lassoJNI.Samlp2ManageNameIDRequest_issueInstant_get(swigCPtr, this);
112
112
  }
113
113
 
114
114
  public void setDestination(String value) {
115
 
    lassoJNI.Samlp2ManageNameIDRequest_Destination_set(swigCPtr, value);
 
115
    lassoJNI.Samlp2ManageNameIDRequest_destination_set(swigCPtr, this, value);
116
116
  }
117
117
 
118
118
  public String getDestination() {
119
 
    return lassoJNI.Samlp2ManageNameIDRequest_Destination_get(swigCPtr);
 
119
    return lassoJNI.Samlp2ManageNameIDRequest_destination_get(swigCPtr, this);
120
120
  }
121
121
 
122
122
  public void setConsent(String value) {
123
 
    lassoJNI.Samlp2ManageNameIDRequest_Consent_set(swigCPtr, value);
 
123
    lassoJNI.Samlp2ManageNameIDRequest_consent_set(swigCPtr, this, value);
124
124
  }
125
125
 
126
126
  public String getConsent() {
127
 
    return lassoJNI.Samlp2ManageNameIDRequest_Consent_get(swigCPtr);
 
127
    return lassoJNI.Samlp2ManageNameIDRequest_consent_get(swigCPtr, this);
128
128
  }
129
129
 
130
130
  public Samlp2ManageNameIDRequest() {
132
132
  }
133
133
 
134
134
  public String dump() {
135
 
    return lassoJNI.Samlp2ManageNameIDRequest_dump(swigCPtr);
 
135
    return lassoJNI.Samlp2ManageNameIDRequest_dump(swigCPtr, this);
136
136
  }
137
137
 
138
138
}