~ubuntu-branches/ubuntu/jaunty/lasso/jaunty

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/* ----------------------------------------------------------------------------
 * This file was automatically generated by SWIG (http://www.swig.org).
 * Version 1.3.31
 *
 * Do not make changes to this file unless you know what you are doing--modify
 * the SWIG interface file instead.
 * ----------------------------------------------------------------------------- */

package com.entrouvert.lasso;

public class SamlpRequestAbstract extends Node {
  protected SamlpRequestAbstract(long cPtr, boolean cMemoryOwn) {
    super(cPtr, cMemoryOwn);
  }

  protected static long getCPtr(SamlpRequestAbstract obj) {
    return (obj == null) ? 0 : obj.swigCPtr;
  }

  public void delete() {
  super.delete();
}

  public void setCertificateFile(String value) {
    lassoJNI.SamlpRequestAbstract_certificateFile_set(swigCPtr, this, value);
  }

  public String getCertificateFile() {
    return lassoJNI.SamlpRequestAbstract_certificateFile_get(swigCPtr, this);
  }

  public void setIssueInstant(String value) {
    lassoJNI.SamlpRequestAbstract_issueInstant_set(swigCPtr, this, value);
  }

  public String getIssueInstant() {
    return lassoJNI.SamlpRequestAbstract_issueInstant_get(swigCPtr, this);
  }

  public void setMajorVersion(int value) {
    lassoJNI.SamlpRequestAbstract_majorVersion_set(swigCPtr, this, value);
  }

  public int getMajorVersion() {
    return lassoJNI.SamlpRequestAbstract_majorVersion_get(swigCPtr, this);
  }

  public void setMinorVersion(int value) {
    lassoJNI.SamlpRequestAbstract_minorVersion_set(swigCPtr, this, value);
  }

  public int getMinorVersion() {
    return lassoJNI.SamlpRequestAbstract_minorVersion_get(swigCPtr, this);
  }

  public void setPrivateKeyFile(String value) {
    lassoJNI.SamlpRequestAbstract_privateKeyFile_set(swigCPtr, this, value);
  }

  public String getPrivateKeyFile() {
    return lassoJNI.SamlpRequestAbstract_privateKeyFile_get(swigCPtr, this);
  }

  public void setRequestId(String value) {
    lassoJNI.SamlpRequestAbstract_requestId_set(swigCPtr, this, value);
  }

  public String getRequestId() {
    return lassoJNI.SamlpRequestAbstract_requestId_get(swigCPtr, this);
  }

  public void setSignMethod(int value) {
    lassoJNI.SamlpRequestAbstract_signMethod_set(swigCPtr, this, value);
  }

  public int getSignMethod() {
    return lassoJNI.SamlpRequestAbstract_signMethod_get(swigCPtr, this);
  }

  public void setSignType(int value) {
    lassoJNI.SamlpRequestAbstract_signType_set(swigCPtr, this, value);
  }

  public int getSignType() {
    return lassoJNI.SamlpRequestAbstract_signType_get(swigCPtr, this);
  }

  public void setRespondWith(StringList value) {
    lassoJNI.SamlpRequestAbstract_respondWith_set(swigCPtr, this, StringList.getCPtr(value), value);
  }

  public StringList getRespondWith() {
    long cPtr = lassoJNI.SamlpRequestAbstract_respondWith_get(swigCPtr, this);
    return (cPtr == 0) ? null : new StringList(cPtr, false);
  }

  public String dump() {
    return lassoJNI.SamlpRequestAbstract_dump(swigCPtr, this);
  }

}