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

« back to all changes in this revision

Viewing changes to java/SamlAuthenticationStatement.java

  • Committer: Bazaar Package Importer
  • Author(s): Stephan Hermann
  • Date: 2005-09-16 02:16:49 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050916021649-lr5tuka6pfmmks44
Tags: 0.6.2-3ubuntu1
* debian/control: removed hardcoded php dependency, added php:Depends
  substvar
* debian/rules: added phpapiver, added substitution of php:Depends

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.24
 
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 SamlAuthenticationStatement extends SamlSubjectStatementAbstract {
 
12
  protected SamlAuthenticationStatement(long cPtr, boolean cMemoryOwn) {
 
13
    super(cPtr, cMemoryOwn);
 
14
  }
 
15
 
 
16
  protected static long getCPtr(SamlAuthenticationStatement 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 setAuthenticationInstant(String AuthenticationInstant) {
 
29
    lassoJNI.set_SamlAuthenticationStatement_authenticationInstant(swigCPtr, AuthenticationInstant);
 
30
  }
 
31
 
 
32
  public String getAuthenticationInstant() {
 
33
    return lassoJNI.get_SamlAuthenticationStatement_authenticationInstant(swigCPtr);
 
34
  }
 
35
 
 
36
  public void setAuthenticationMethod(String AuthenticationMethod) {
 
37
    lassoJNI.set_SamlAuthenticationStatement_authenticationMethod(swigCPtr, AuthenticationMethod);
 
38
  }
 
39
 
 
40
  public String getAuthenticationMethod() {
 
41
    return lassoJNI.get_SamlAuthenticationStatement_authenticationMethod(swigCPtr);
 
42
  }
 
43
 
 
44
  public void setAuthorityBinding(NodeList AuthorityBinding) {
 
45
    lassoJNI.set_SamlAuthenticationStatement_authorityBinding(swigCPtr, NodeList.getCPtr(AuthorityBinding));
 
46
  }
 
47
 
 
48
  public NodeList getAuthorityBinding() {
 
49
    long cPtr = lassoJNI.get_SamlAuthenticationStatement_authorityBinding(swigCPtr);
 
50
    return (cPtr == 0) ? null : new NodeList(cPtr, false);
 
51
  }
 
52
 
 
53
  public void setSubjectLocality(SamlSubjectLocality SubjectLocality) {
 
54
    lassoJNI.set_SamlAuthenticationStatement_subjectLocality(swigCPtr, SamlSubjectLocality.getCPtr(SubjectLocality));
 
55
  }
 
56
 
 
57
  public SamlSubjectLocality getSubjectLocality() {
 
58
    long cPtr = lassoJNI.get_SamlAuthenticationStatement_subjectLocality(swigCPtr);
 
59
    return (cPtr == 0) ? null : new SamlSubjectLocality(cPtr, false);
 
60
  }
 
61
 
 
62
  public SamlAuthenticationStatement() {
 
63
    this(lassoJNI.new_SamlAuthenticationStatement(), true);
 
64
  }
 
65
 
 
66
  public String dump() {
 
67
    return lassoJNI.SamlAuthenticationStatement_dump(swigCPtr);
 
68
  }
 
69
 
 
70
}