~ubuntu-branches/ubuntu/hardy/lasso/hardy

« back to all changes in this revision

Viewing changes to java/Saml2Conditions.java

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2006-07-11 10:01:32 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060711100132-e50ymjc54bsizza6
Tags: 0.6.5-2ubuntu1
* Synchronize with Debian unstable.
* Convert to updated Python policy.

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.28
 
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
public class Saml2Conditions extends Node {
 
12
  protected Saml2Conditions(long cPtr, boolean cMemoryOwn) {
 
13
    super(cPtr, cMemoryOwn);
 
14
  }
 
15
 
 
16
  protected static long getCPtr(Saml2Conditions obj) {
 
17
    return (obj == null) ? 0 : obj.swigCPtr;
 
18
  }
 
19
 
 
20
  protected void finalize() {
 
21
    delete();
 
22
  }
 
23
 
 
24
  public void delete() {
 
25
  super.delete();
 
26
}
 
27
 
 
28
  public void setNotBefore(String value) {
 
29
    lassoJNI.Saml2Conditions_notBefore_set(swigCPtr, value);
 
30
  }
 
31
 
 
32
  public String getNotBefore() {
 
33
    return lassoJNI.Saml2Conditions_notBefore_get(swigCPtr);
 
34
  }
 
35
 
 
36
  public void setNotOnOrAfter(String value) {
 
37
    lassoJNI.Saml2Conditions_notOnOrAfter_set(swigCPtr, value);
 
38
  }
 
39
 
 
40
  public String getNotOnOrAfter() {
 
41
    return lassoJNI.Saml2Conditions_notOnOrAfter_get(swigCPtr);
 
42
  }
 
43
 
 
44
  public Saml2Conditions() {
 
45
    this(lassoJNI.new_Saml2Conditions(), true);
 
46
  }
 
47
 
 
48
  public String dump() {
 
49
    return lassoJNI.Saml2Conditions_dump(swigCPtr);
 
50
  }
 
51
 
 
52
}