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

« back to all changes in this revision

Viewing changes to java/Samlp2RequestedAuthnContext.java

  • Committer: Bazaar Package Importer
  • Author(s): Michael Bienia
  • Date: 2007-07-31 21:35:26 UTC
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: james.westby@ubuntu.com-20070731213526-5yf8k7sq7slsb450
Tags: upstream-2.0.0
ImportĀ upstreamĀ versionĀ 2.0.0

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 setAuthnContextClassRef(String value) {
29
 
    lassoJNI.Samlp2RequestedAuthnContext_AuthnContextClassRef_set(swigCPtr, value);
30
 
  }
31
 
 
32
 
  public String getAuthnContextClassRef() {
33
 
    return lassoJNI.Samlp2RequestedAuthnContext_AuthnContextClassRef_get(swigCPtr);
34
 
  }
35
 
 
36
 
  public void setAuthnContextDeclRef(String value) {
37
 
    lassoJNI.Samlp2RequestedAuthnContext_AuthnContextDeclRef_set(swigCPtr, value);
38
 
  }
39
 
 
40
 
  public String getAuthnContextDeclRef() {
41
 
    return lassoJNI.Samlp2RequestedAuthnContext_AuthnContextDeclRef_get(swigCPtr);
42
 
  }
43
 
 
44
28
  public void setComparison(String value) {
45
 
    lassoJNI.Samlp2RequestedAuthnContext_Comparison_set(swigCPtr, value);
 
29
    lassoJNI.Samlp2RequestedAuthnContext_comparison_set(swigCPtr, this, value);
46
30
  }
47
31
 
48
32
  public String getComparison() {
49
 
    return lassoJNI.Samlp2RequestedAuthnContext_Comparison_get(swigCPtr);
 
33
    return lassoJNI.Samlp2RequestedAuthnContext_comparison_get(swigCPtr, this);
 
34
  }
 
35
 
 
36
  public void setAuthnContextClassRef(StringList value) {
 
37
    lassoJNI.Samlp2RequestedAuthnContext_authnContextClassRef_set(swigCPtr, this, StringList.getCPtr(value), value);
 
38
  }
 
39
 
 
40
  public StringList getAuthnContextClassRef() {
 
41
    long cPtr = lassoJNI.Samlp2RequestedAuthnContext_authnContextClassRef_get(swigCPtr, this);
 
42
    return (cPtr == 0) ? null : new StringList(cPtr, false);
 
43
  }
 
44
 
 
45
  public void setAuthnContextDeclRef(StringList value) {
 
46
    lassoJNI.Samlp2RequestedAuthnContext_authnContextDeclRef_set(swigCPtr, this, StringList.getCPtr(value), value);
 
47
  }
 
48
 
 
49
  public StringList getAuthnContextDeclRef() {
 
50
    long cPtr = lassoJNI.Samlp2RequestedAuthnContext_authnContextDeclRef_get(swigCPtr, this);
 
51
    return (cPtr == 0) ? null : new StringList(cPtr, false);
50
52
  }
51
53
 
52
54
  public Samlp2RequestedAuthnContext() {
54
56
  }
55
57
 
56
58
  public String dump() {
57
 
    return lassoJNI.Samlp2RequestedAuthnContext_dump(swigCPtr);
 
59
    return lassoJNI.Samlp2RequestedAuthnContext_dump(swigCPtr, this);
58
60
  }
59
61
 
60
62
}