/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 1.3.31 * * 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 Samlp2StatusCode extends Node { protected Samlp2StatusCode(long cPtr, boolean cMemoryOwn) { super(cPtr, cMemoryOwn); } protected static long getCPtr(Samlp2StatusCode obj) { return (obj == null) ? 0 : obj.swigCPtr; } protected void finalize() { delete(); } public void delete() { super.delete(); } public void setValue(String value) { lassoJNI.Samlp2StatusCode_value_set(swigCPtr, this, value); } public String getValue() { return lassoJNI.Samlp2StatusCode_value_get(swigCPtr, this); } public void setStatusCode(Samlp2StatusCode value) { lassoJNI.Samlp2StatusCode_statusCode_set(swigCPtr, this, Samlp2StatusCode.getCPtr(value), value); } public Samlp2StatusCode getStatusCode() { long cPtr = lassoJNI.Samlp2StatusCode_statusCode_get(swigCPtr, this); return (cPtr == 0) ? null : new Samlp2StatusCode(cPtr, false); } public Samlp2StatusCode() { this(lassoJNI.new_Samlp2StatusCode(), true); } public String dump() { return lassoJNI.Samlp2StatusCode_dump(swigCPtr, this); } }