~ubuntu-branches/ubuntu/karmic/lasso/karmic

« back to all changes in this revision

Viewing changes to java/SamlAdvice.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 setAssertion(SamlAssertion value) {
29
 
    lassoJNI.SamlAdvice_assertion_set(swigCPtr, SamlAssertion.getCPtr(value));
 
29
    lassoJNI.SamlAdvice_assertion_set(swigCPtr, this, SamlAssertion.getCPtr(value), value);
30
30
  }
31
31
 
32
32
  public SamlAssertion getAssertion() {
33
 
    long cPtr = lassoJNI.SamlAdvice_assertion_get(swigCPtr);
 
33
    long cPtr = lassoJNI.SamlAdvice_assertion_get(swigCPtr, this);
34
34
    return (cPtr == 0) ? null : new SamlAssertion(cPtr, false);
35
35
  }
36
36
 
37
37
  public void setAssertionIdReference(StringList value) {
38
 
    lassoJNI.SamlAdvice_assertionIdReference_set(swigCPtr, StringList.getCPtr(value));
 
38
    lassoJNI.SamlAdvice_assertionIdReference_set(swigCPtr, this, StringList.getCPtr(value), value);
39
39
  }
40
40
 
41
41
  public StringList getAssertionIdReference() {
42
 
    long cPtr = lassoJNI.SamlAdvice_assertionIdReference_get(swigCPtr);
 
42
    long cPtr = lassoJNI.SamlAdvice_assertionIdReference_get(swigCPtr, this);
43
43
    return (cPtr == 0) ? null : new StringList(cPtr, false);
44
44
  }
45
45
 
48
48
  }
49
49
 
50
50
  public String dump() {
51
 
    return lassoJNI.SamlAdvice_dump(swigCPtr);
 
51
    return lassoJNI.SamlAdvice_dump(swigCPtr, this);
52
52
  }
53
53
 
54
54
}