1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
* Version 1.3.28
*
* Do not make changes to this file unless you know what you are doing--modify
* the SWIG interface file instead.
* ----------------------------------------------------------------------------- */
package com.entrouvert.lasso;
public class Saml2AuthnStatement extends Saml2StatementAbstract {
protected Saml2AuthnStatement(long cPtr, boolean cMemoryOwn) {
super(cPtr, cMemoryOwn);
}
protected static long getCPtr(Saml2AuthnStatement obj) {
return (obj == null) ? 0 : obj.swigCPtr;
}
protected void finalize() {
delete();
}
public void delete() {
super.delete();
}
public void setAuthnInstant(String value) {
lassoJNI.Saml2AuthnStatement_AuthnInstant_set(swigCPtr, value);
}
public String getAuthnInstant() {
return lassoJNI.Saml2AuthnStatement_AuthnInstant_get(swigCPtr);
}
public void setSessionIndex(String value) {
lassoJNI.Saml2AuthnStatement_sessionIndex_set(swigCPtr, value);
}
public String getSessionIndex() {
return lassoJNI.Saml2AuthnStatement_sessionIndex_get(swigCPtr);
}
public void setSessionNotOnOrAfter(String value) {
lassoJNI.Saml2AuthnStatement_SessionNotOnOrAfter_set(swigCPtr, value);
}
public String getSessionNotOnOrAfter() {
return lassoJNI.Saml2AuthnStatement_SessionNotOnOrAfter_get(swigCPtr);
}
public void setSubjectLocality(Saml2SubjectLocality value) {
lassoJNI.Saml2AuthnStatement_subjectLocality_set(swigCPtr, Saml2SubjectLocality.getCPtr(value));
}
public Saml2SubjectLocality getSubjectLocality() {
long cPtr = lassoJNI.Saml2AuthnStatement_subjectLocality_get(swigCPtr);
return (cPtr == 0) ? null : new Saml2SubjectLocality(cPtr, false);
}
public void setAuthnContext(Saml2AuthnContext value) {
lassoJNI.Saml2AuthnStatement_authnContext_set(swigCPtr, Saml2AuthnContext.getCPtr(value));
}
public Saml2AuthnContext getAuthnContext() {
long cPtr = lassoJNI.Saml2AuthnStatement_authnContext_get(swigCPtr);
return (cPtr == 0) ? null : new Saml2AuthnContext(cPtr, false);
}
public Saml2AuthnStatement() {
this(lassoJNI.new_Saml2AuthnStatement(), true);
}
public String dump() {
return lassoJNI.Saml2AuthnStatement_dump(swigCPtr);
}
}
|