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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
/* ----------------------------------------------------------------------------
* 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 SamlpResponseAbstract extends Node {
protected SamlpResponseAbstract(long cPtr, boolean cMemoryOwn) {
super(cPtr, cMemoryOwn);
}
protected static long getCPtr(SamlpResponseAbstract obj) {
return (obj == null) ? 0 : obj.swigCPtr;
}
public void delete() {
super.delete();
}
public void setCertificateFile(String value) {
lassoJNI.SamlpResponseAbstract_certificateFile_set(swigCPtr, value);
}
public String getCertificateFile() {
return lassoJNI.SamlpResponseAbstract_certificateFile_get(swigCPtr);
}
public void setInResponseTo(String value) {
lassoJNI.SamlpResponseAbstract_inResponseTo_set(swigCPtr, value);
}
public String getInResponseTo() {
return lassoJNI.SamlpResponseAbstract_inResponseTo_get(swigCPtr);
}
public void setIssueInstant(String value) {
lassoJNI.SamlpResponseAbstract_issueInstant_set(swigCPtr, value);
}
public String getIssueInstant() {
return lassoJNI.SamlpResponseAbstract_issueInstant_get(swigCPtr);
}
public void setMajorVersion(int value) {
lassoJNI.SamlpResponseAbstract_majorVersion_set(swigCPtr, value);
}
public int getMajorVersion() {
return lassoJNI.SamlpResponseAbstract_majorVersion_get(swigCPtr);
}
public void setMinorVersion(int value) {
lassoJNI.SamlpResponseAbstract_minorVersion_set(swigCPtr, value);
}
public int getMinorVersion() {
return lassoJNI.SamlpResponseAbstract_minorVersion_get(swigCPtr);
}
public void setPrivateKeyFile(String value) {
lassoJNI.SamlpResponseAbstract_privateKeyFile_set(swigCPtr, value);
}
public String getPrivateKeyFile() {
return lassoJNI.SamlpResponseAbstract_privateKeyFile_get(swigCPtr);
}
public void setRecipient(String value) {
lassoJNI.SamlpResponseAbstract_recipient_set(swigCPtr, value);
}
public String getRecipient() {
return lassoJNI.SamlpResponseAbstract_recipient_get(swigCPtr);
}
public void setResponseId(String value) {
lassoJNI.SamlpResponseAbstract_responseId_set(swigCPtr, value);
}
public String getResponseId() {
return lassoJNI.SamlpResponseAbstract_responseId_get(swigCPtr);
}
public void setSignMethod(int value) {
lassoJNI.SamlpResponseAbstract_signMethod_set(swigCPtr, value);
}
public int getSignMethod() {
return lassoJNI.SamlpResponseAbstract_signMethod_get(swigCPtr);
}
public void setSignType(SWIGTYPE_p_LassoSignatureType value) {
lassoJNI.SamlpResponseAbstract_signType_set(swigCPtr, SWIGTYPE_p_LassoSignatureType.getCPtr(value));
}
public SWIGTYPE_p_LassoSignatureType getSignType() {
return new SWIGTYPE_p_LassoSignatureType(lassoJNI.SamlpResponseAbstract_signType_get(swigCPtr), true);
}
public String dump() {
return lassoJNI.SamlpResponseAbstract_dump(swigCPtr);
}
}
|