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

« back to all changes in this revision

Viewing changes to java/LibRegisterNameIdentifierResponse.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:
63
63
    this(lassoJNI.new_LibRegisterNameIdentifierResponse(), true);
64
64
  }
65
65
 
66
 
  public static LibRegisterNameIdentifierResponse newFull(String providerID, String statusCodeValue, LibRegisterNameIdentifierRequest request, SWIGTYPE_p_LassoSignatureType sign_type, int sign_method) {
67
 
    long cPtr = lassoJNI.LibRegisterNameIdentifierResponse_newFull(providerID, statusCodeValue, LibRegisterNameIdentifierRequest.getCPtr(request), request, SWIGTYPE_p_LassoSignatureType.getCPtr(sign_type), sign_method);
 
66
  public static LibRegisterNameIdentifierResponse newFull(String providerID, String statusCodeValue, LibRegisterNameIdentifierRequest request, int sign_type, int sign_method) {
 
67
    long cPtr = lassoJNI.LibRegisterNameIdentifierResponse_newFull(providerID, statusCodeValue, LibRegisterNameIdentifierRequest.getCPtr(request), request, sign_type, sign_method);
68
68
    return (cPtr == 0) ? null : new LibRegisterNameIdentifierResponse(cPtr, true);
69
69
  }
70
70