~ubuntu-branches/ubuntu/edgy/lasso/edgy

« back to all changes in this revision

Viewing changes to java/AuthnResponse.java

  • Committer: Bazaar Package Importer
  • Author(s): Frederic Peters
  • Date: 2004-09-13 09:26:34 UTC
  • Revision ID: james.westby@ubuntu.com-20040913092634-01vdfl8j9cp94exa
Tags: upstream-0.4.1
ImportĀ upstreamĀ versionĀ 0.4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* ----------------------------------------------------------------------------
 
2
 * This file was automatically generated by SWIG (http://www.swig.org).
 
3
 * Version: 1.3.21
 
4
 *
 
5
 * Do not make changes to this file unless you know what you are doing--modify
 
6
 * the SWIG interface file instead.
 
7
 * ----------------------------------------------------------------------------- */
 
8
 
 
9
package com.entrouvert.lasso;
 
10
 
 
11
 
 
12
public class AuthnResponse {
 
13
  private long swigCPtr;
 
14
  protected boolean swigCMemOwn;
 
15
 
 
16
  protected AuthnResponse(long cPtr, boolean cMemoryOwn) {
 
17
    swigCMemOwn = cMemoryOwn;
 
18
    swigCPtr = cPtr;
 
19
  }
 
20
 
 
21
  protected AuthnResponse() {
 
22
    this(0, false);
 
23
  }
 
24
 
 
25
  public void delete() {
 
26
    if(swigCPtr != 0 && swigCMemOwn) {
 
27
      swigCMemOwn = false;
 
28
      throw new UnsupportedOperationException("C++ destructor does not have public access");
 
29
    }
 
30
    swigCPtr = 0;
 
31
  }
 
32
 
 
33
  protected static long getCPtr(AuthnResponse obj) {
 
34
    return (obj == null) ? 0 : obj.swigCPtr;
 
35
  }
 
36
 
 
37
}