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
|
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
* Version 1.3.35
*
* Do not make changes to this file unless you know what you are doing--modify
* the SWIG interface file instead.
* ----------------------------------------------------------------------------- */
package be.belgium.eid;
/******************************************************************************//**
* Base class for all the documents
*********************************************************************************/
public class BEID_XMLDoc extends BEID_Object {
private long swigCPtr;
protected BEID_XMLDoc(long cPtr, boolean cMemoryOwn) {
super(beidlibJava_WrapperJNI.SWIGBEID_XMLDocUpcast(cPtr), cMemoryOwn);
swigCPtr = cPtr;
}
protected static long getCPtr(BEID_XMLDoc obj) {
return (obj == null) ? 0 : obj.swigCPtr;
}
protected void finalize() {
delete();
}
public synchronized void delete() {
if(swigCPtr != 0 && swigCMemOwn) {
swigCMemOwn = false;
beidlibJava_WrapperJNI.delete_BEID_XMLDoc(swigCPtr);
}
swigCPtr = 0;
super.delete();
}
/** Check if the document is allowed */
public boolean isAllowed() {
return beidlibJava_WrapperJNI.BEID_XMLDoc_isAllowed(swigCPtr, this);
}
/** Get the document in an XML format */
public BEID_ByteArray getXML() throws java.lang.Exception {
return new BEID_ByteArray(beidlibJava_WrapperJNI.BEID_XMLDoc_getXML(swigCPtr, this), true);
}
/** Get the document in an CSV format */
public BEID_ByteArray getCSV() throws java.lang.Exception {
return new BEID_ByteArray(beidlibJava_WrapperJNI.BEID_XMLDoc_getCSV(swigCPtr, this), true);
}
/** Get the document in an TLV format */
public BEID_ByteArray getTLV() throws java.lang.Exception {
return new BEID_ByteArray(beidlibJava_WrapperJNI.BEID_XMLDoc_getTLV(swigCPtr, this), true);
}
/**
* Write the document as XML into the file csFilePath
* @return true if succeeded
*/
public boolean writeXmlToFile(String csFilePath) throws java.lang.Exception {
return beidlibJava_WrapperJNI.BEID_XMLDoc_writeXmlToFile(swigCPtr, this, csFilePath);
}
/**
* Write the document as CSV into the file csFilePath
* @return true if succeeded
*/
public boolean writeCsvToFile(String csFilePath) throws java.lang.Exception {
return beidlibJava_WrapperJNI.BEID_XMLDoc_writeCsvToFile(swigCPtr, this, csFilePath);
}
/**
* Write the document as TLV into the file csFilePath
* @return true if succeeded
*/
public boolean writeTlvToFile(String csFilePath) throws java.lang.Exception {
return beidlibJava_WrapperJNI.BEID_XMLDoc_writeTlvToFile(swigCPtr, this, csFilePath);
}
}
|