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

« back to all changes in this revision

Viewing changes to java/Samlp2ArtifactResolve.java

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2006-07-11 10:01:32 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060711100132-e50ymjc54bsizza6
Tags: 0.6.5-2ubuntu1
* Synchronize with Debian unstable.
* Convert to updated Python policy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* ----------------------------------------------------------------------------
 
2
 * This file was automatically generated by SWIG (http://www.swig.org).
 
3
 * Version 1.3.28
 
4
 *
 
5
 * Do not make changes to this file unless you know what you are doing--modify
 
6
 * the SWIG interface file instead.
 
7
 * ----------------------------------------------------------------------------- */
 
8
 
 
9
package com.entrouvert.lasso;
 
10
 
 
11
public class Samlp2ArtifactResolve extends Samlp2RequestAbstract {
 
12
  protected Samlp2ArtifactResolve(long cPtr, boolean cMemoryOwn) {
 
13
    super(cPtr, cMemoryOwn);
 
14
  }
 
15
 
 
16
  protected static long getCPtr(Samlp2ArtifactResolve obj) {
 
17
    return (obj == null) ? 0 : obj.swigCPtr;
 
18
  }
 
19
 
 
20
  protected void finalize() {
 
21
    delete();
 
22
  }
 
23
 
 
24
  public void delete() {
 
25
  super.delete();
 
26
}
 
27
 
 
28
  public void setArtifact(String value) {
 
29
    lassoJNI.Samlp2ArtifactResolve_Artifact_set(swigCPtr, value);
 
30
  }
 
31
 
 
32
  public String getArtifact() {
 
33
    return lassoJNI.Samlp2ArtifactResolve_Artifact_get(swigCPtr);
 
34
  }
 
35
 
 
36
  public void setIssuer(Saml2NameID value) {
 
37
    lassoJNI.Samlp2ArtifactResolve_issuer_set(swigCPtr, Saml2NameID.getCPtr(value));
 
38
  }
 
39
 
 
40
  public Saml2NameID getIssuer() {
 
41
    long cPtr = lassoJNI.Samlp2ArtifactResolve_issuer_get(swigCPtr);
 
42
    return (cPtr == 0) ? null : new Saml2NameID(cPtr, false);
 
43
  }
 
44
 
 
45
  public void setExtensions(Samlp2Extensions value) {
 
46
    lassoJNI.Samlp2ArtifactResolve_Extensions_set(swigCPtr, Samlp2Extensions.getCPtr(value));
 
47
  }
 
48
 
 
49
  public Samlp2Extensions getExtensions() {
 
50
    long cPtr = lassoJNI.Samlp2ArtifactResolve_Extensions_get(swigCPtr);
 
51
    return (cPtr == 0) ? null : new Samlp2Extensions(cPtr, false);
 
52
  }
 
53
 
 
54
  public void setID(String value) {
 
55
    lassoJNI.Samlp2ArtifactResolve_ID_set(swigCPtr, value);
 
56
  }
 
57
 
 
58
  public String getID() {
 
59
    return lassoJNI.Samlp2ArtifactResolve_ID_get(swigCPtr);
 
60
  }
 
61
 
 
62
  public void setVersion(String value) {
 
63
    lassoJNI.Samlp2ArtifactResolve_Version_set(swigCPtr, value);
 
64
  }
 
65
 
 
66
  public String getVersion() {
 
67
    return lassoJNI.Samlp2ArtifactResolve_Version_get(swigCPtr);
 
68
  }
 
69
 
 
70
  public void setIssueInstant(String value) {
 
71
    lassoJNI.Samlp2ArtifactResolve_issueInstant_set(swigCPtr, value);
 
72
  }
 
73
 
 
74
  public String getIssueInstant() {
 
75
    return lassoJNI.Samlp2ArtifactResolve_issueInstant_get(swigCPtr);
 
76
  }
 
77
 
 
78
  public void setDestination(String value) {
 
79
    lassoJNI.Samlp2ArtifactResolve_Destination_set(swigCPtr, value);
 
80
  }
 
81
 
 
82
  public String getDestination() {
 
83
    return lassoJNI.Samlp2ArtifactResolve_Destination_get(swigCPtr);
 
84
  }
 
85
 
 
86
  public void setConsent(String value) {
 
87
    lassoJNI.Samlp2ArtifactResolve_Consent_set(swigCPtr, value);
 
88
  }
 
89
 
 
90
  public String getConsent() {
 
91
    return lassoJNI.Samlp2ArtifactResolve_Consent_get(swigCPtr);
 
92
  }
 
93
 
 
94
  public Samlp2ArtifactResolve() {
 
95
    this(lassoJNI.new_Samlp2ArtifactResolve(), true);
 
96
  }
 
97
 
 
98
  public String dump() {
 
99
    return lassoJNI.Samlp2ArtifactResolve_dump(swigCPtr);
 
100
  }
 
101
 
 
102
}