~ubuntu-branches/ubuntu/gutsy/lasso/gutsy-security

« back to all changes in this revision

Viewing changes to java/Saml2AuthzDecisionStatement.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 setResource(String value) {
29
 
    lassoJNI.Saml2AuthzDecisionStatement_Resource_set(swigCPtr, value);
 
29
    lassoJNI.Saml2AuthzDecisionStatement_resource_set(swigCPtr, this, value);
30
30
  }
31
31
 
32
32
  public String getResource() {
33
 
    return lassoJNI.Saml2AuthzDecisionStatement_Resource_get(swigCPtr);
 
33
    return lassoJNI.Saml2AuthzDecisionStatement_resource_get(swigCPtr, this);
34
34
  }
35
35
 
36
36
  public void setDecision(String value) {
37
 
    lassoJNI.Saml2AuthzDecisionStatement_Decision_set(swigCPtr, value);
 
37
    lassoJNI.Saml2AuthzDecisionStatement_decision_set(swigCPtr, this, value);
38
38
  }
39
39
 
40
40
  public String getDecision() {
41
 
    return lassoJNI.Saml2AuthzDecisionStatement_Decision_get(swigCPtr);
 
41
    return lassoJNI.Saml2AuthzDecisionStatement_decision_get(swigCPtr, this);
42
42
  }
43
43
 
44
44
  public void setAction(Saml2Action value) {
45
 
    lassoJNI.Saml2AuthzDecisionStatement_action_set(swigCPtr, Saml2Action.getCPtr(value));
 
45
    lassoJNI.Saml2AuthzDecisionStatement_action_set(swigCPtr, this, Saml2Action.getCPtr(value), value);
46
46
  }
47
47
 
48
48
  public Saml2Action getAction() {
49
 
    long cPtr = lassoJNI.Saml2AuthzDecisionStatement_action_get(swigCPtr);
 
49
    long cPtr = lassoJNI.Saml2AuthzDecisionStatement_action_get(swigCPtr, this);
50
50
    return (cPtr == 0) ? null : new Saml2Action(cPtr, false);
51
51
  }
52
52
 
53
53
  public void setEvidence(Saml2Evidence value) {
54
 
    lassoJNI.Saml2AuthzDecisionStatement_evidence_set(swigCPtr, Saml2Evidence.getCPtr(value));
 
54
    lassoJNI.Saml2AuthzDecisionStatement_evidence_set(swigCPtr, this, Saml2Evidence.getCPtr(value), value);
55
55
  }
56
56
 
57
57
  public Saml2Evidence getEvidence() {
58
 
    long cPtr = lassoJNI.Saml2AuthzDecisionStatement_evidence_get(swigCPtr);
 
58
    long cPtr = lassoJNI.Saml2AuthzDecisionStatement_evidence_get(swigCPtr, this);
59
59
    return (cPtr == 0) ? null : new Saml2Evidence(cPtr, false);
60
60
  }
61
61
 
64
64
  }
65
65
 
66
66
  public String dump() {
67
 
    return lassoJNI.Saml2AuthzDecisionStatement_dump(swigCPtr);
 
67
    return lassoJNI.Saml2AuthzDecisionStatement_dump(swigCPtr, this);
68
68
  }
69
69
 
70
70
}