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

« back to all changes in this revision

Viewing changes to java/Samlp2IDPEntry.java

  • Committer: Bazaar Package Importer
  • Author(s): Michael Bienia
  • Date: 2007-07-31 21:35:26 UTC
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: james.westby@ubuntu.com-20070731213526-5yf8k7sq7slsb450
Tags: upstream-2.0.0
ImportĀ upstreamĀ versionĀ 2.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* ----------------------------------------------------------------------------
2
2
 * This file was automatically generated by SWIG (http://www.swig.org).
3
 
 * Version 1.3.28
 
3
 * Version 1.3.31
4
4
 *
5
5
 * Do not make changes to this file unless you know what you are doing--modify
6
6
 * the SWIG interface file instead.
26
26
}
27
27
 
28
28
  public void setProviderId(String value) {
29
 
    lassoJNI.Samlp2IDPEntry_providerId_set(swigCPtr, value);
 
29
    lassoJNI.Samlp2IDPEntry_providerId_set(swigCPtr, this, value);
30
30
  }
31
31
 
32
32
  public String getProviderId() {
33
 
    return lassoJNI.Samlp2IDPEntry_providerId_get(swigCPtr);
 
33
    return lassoJNI.Samlp2IDPEntry_providerId_get(swigCPtr, this);
34
34
  }
35
35
 
36
36
  public void setName(String value) {
37
 
    lassoJNI.Samlp2IDPEntry_Name_set(swigCPtr, value);
 
37
    lassoJNI.Samlp2IDPEntry_name_set(swigCPtr, this, value);
38
38
  }
39
39
 
40
40
  public String getName() {
41
 
    return lassoJNI.Samlp2IDPEntry_Name_get(swigCPtr);
 
41
    return lassoJNI.Samlp2IDPEntry_name_get(swigCPtr, this);
42
42
  }
43
43
 
44
44
  public void setLoc(String value) {
45
 
    lassoJNI.Samlp2IDPEntry_Loc_set(swigCPtr, value);
 
45
    lassoJNI.Samlp2IDPEntry_loc_set(swigCPtr, this, value);
46
46
  }
47
47
 
48
48
  public String getLoc() {
49
 
    return lassoJNI.Samlp2IDPEntry_Loc_get(swigCPtr);
 
49
    return lassoJNI.Samlp2IDPEntry_loc_get(swigCPtr, this);
50
50
  }
51
51
 
52
52
  public Samlp2IDPEntry() {
54
54
  }
55
55
 
56
56
  public String dump() {
57
 
    return lassoJNI.Samlp2IDPEntry_dump(swigCPtr);
 
57
    return lassoJNI.Samlp2IDPEntry_dump(swigCPtr, this);
58
58
  }
59
59
 
60
60
}