%module javaupm_relay %include "../upm.i" %{ #include "relay.hpp" %} %include "relay.hpp" %pragma(java) jniclasscode=%{ static { try { System.loadLibrary("javaupm_relay"); } catch (UnsatisfiedLinkError e) { System.err.println("Native code library failed to load. \n" + e); System.exit(1); } } %}