~ubuntu-branches/ubuntu/utopic/lasso/utopic-proposed

« back to all changes in this revision

Viewing changes to java/AuthnRequest.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 AuthnRequest {
 
13
  private long swigCPtr;
 
14
  protected boolean swigCMemOwn;
 
15
 
 
16
  protected AuthnRequest(long cPtr, boolean cMemoryOwn) {
 
17
    swigCMemOwn = cMemoryOwn;
 
18
    swigCPtr = cPtr;
 
19
  }
 
20
 
 
21
  protected AuthnRequest() {
 
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(AuthnRequest obj) {
 
34
    return (obj == null) ? 0 : obj.swigCPtr;
 
35
  }
 
36
 
 
37
  public void setAffiliationId(String affiliationId) {
 
38
    lassoJNI.set_AuthnRequest_affiliationId(swigCPtr, affiliationId);
 
39
  }
 
40
 
 
41
  public String getAffiliationId() {
 
42
    return lassoJNI.get_AuthnRequest_affiliationId(swigCPtr);
 
43
  }
 
44
 
 
45
  public void setAssertionConsumerServiceId(String assertionConsumerServiceId) {
 
46
    lassoJNI.set_AuthnRequest_assertionConsumerServiceId(swigCPtr, assertionConsumerServiceId);
 
47
  }
 
48
 
 
49
  public String getAssertionConsumerServiceId() {
 
50
    return lassoJNI.get_AuthnRequest_assertionConsumerServiceId(swigCPtr);
 
51
  }
 
52
 
 
53
  public void setConsent(String consent) {
 
54
    lassoJNI.set_AuthnRequest_consent(swigCPtr, consent);
 
55
  }
 
56
 
 
57
  public String getConsent() {
 
58
    return lassoJNI.get_AuthnRequest_consent(swigCPtr);
 
59
  }
 
60
 
 
61
  public void setForceAuthn(boolean forceAuthn) {
 
62
    lassoJNI.set_AuthnRequest_forceAuthn(swigCPtr, forceAuthn);
 
63
  }
 
64
 
 
65
  public boolean getForceAuthn() {
 
66
    return lassoJNI.get_AuthnRequest_forceAuthn(swigCPtr);
 
67
  }
 
68
 
 
69
  public void setIsPassive(boolean isPassive) {
 
70
    lassoJNI.set_AuthnRequest_isPassive(swigCPtr, isPassive);
 
71
  }
 
72
 
 
73
  public boolean getIsPassive() {
 
74
    return lassoJNI.get_AuthnRequest_isPassive(swigCPtr);
 
75
  }
 
76
 
 
77
  public void setNameIdPolicy(String nameIdPolicy) {
 
78
    lassoJNI.set_AuthnRequest_nameIdPolicy(swigCPtr, nameIdPolicy);
 
79
  }
 
80
 
 
81
  public String getNameIdPolicy() {
 
82
    return lassoJNI.get_AuthnRequest_nameIdPolicy(swigCPtr);
 
83
  }
 
84
 
 
85
  public void setProtocolProfile(String protocolProfile) {
 
86
    lassoJNI.set_AuthnRequest_protocolProfile(swigCPtr, protocolProfile);
 
87
  }
 
88
 
 
89
  public String getProtocolProfile() {
 
90
    return lassoJNI.get_AuthnRequest_protocolProfile(swigCPtr);
 
91
  }
 
92
 
 
93
  public void setProviderId(String providerId) {
 
94
    lassoJNI.set_AuthnRequest_providerId(swigCPtr, providerId);
 
95
  }
 
96
 
 
97
  public String getProviderId() {
 
98
    return lassoJNI.get_AuthnRequest_providerId(swigCPtr);
 
99
  }
 
100
 
 
101
  public void setRelayState(String relayState) {
 
102
    lassoJNI.set_AuthnRequest_relayState(swigCPtr, relayState);
 
103
  }
 
104
 
 
105
  public String getRelayState() {
 
106
    return lassoJNI.get_AuthnRequest_relayState(swigCPtr);
 
107
  }
 
108
 
 
109
}