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

« back to all changes in this revision

Viewing changes to java/SamlpRequestAbstract.java

  • Committer: Bazaar Package Importer
  • Author(s): Michael Bienia
  • Date: 2007-11-01 20:01:20 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20071101200120-9ruoui67n24xyz9c
Tags: 2.1.1-2ubuntu1
* Merge from debian unstable (LP: #134095), remaining changes:
  + debian/control:
    - Modify Maintainer value to match DebianMaintainerField spec.
  + configure{,.ac}:
    - Add missing quotes around the value for PHP[45]_LIBS.
* Fix two lintian warnings:
  + debian/control:
    - liblasso3-dev: Replace ${Source-Version} with ${binary:Version}
  + debian/rules:
    - Don't ignore a make clean error.

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
    return lassoJNI.SamlpRequestAbstract_signMethod_get(swigCPtr, this);
78
78
  }
79
79
 
80
 
  public void setSignType(SWIGTYPE_p_LassoSignatureType value) {
81
 
    lassoJNI.SamlpRequestAbstract_signType_set(swigCPtr, this, SWIGTYPE_p_LassoSignatureType.getCPtr(value));
 
80
  public void setSignType(int value) {
 
81
    lassoJNI.SamlpRequestAbstract_signType_set(swigCPtr, this, value);
82
82
  }
83
83
 
84
 
  public SWIGTYPE_p_LassoSignatureType getSignType() {
85
 
    return new SWIGTYPE_p_LassoSignatureType(lassoJNI.SamlpRequestAbstract_signType_get(swigCPtr, this), true);
 
84
  public int getSignType() {
 
85
    return lassoJNI.SamlpRequestAbstract_signType_get(swigCPtr, this);
86
86
  }
87
87
 
88
88
  public void setRespondWith(StringList value) {