.. java:import:: android.content Context .. java:import:: com.idopte.scmiddleware Log .. java:import:: com.idopte.cardsystem CardSystem .. java:import:: com.idopte.scmapi SCMEnvironment .. java:import:: com.idopte.scmapi SCMException .. java:import:: com.idopte.scmiddleware SCWSSystem .. java:import:: java.io IOException SCMEmbedEnvironment =================== .. java:package:: com.idopte.scmapiembed :noindex: .. java:type:: public class SCMEmbedEnvironment extends SCMEnvironment Most basic implementation of \ :java:ref:`SCMEnvironment`\ , in which the SCM HTTP server is started by the application. This is the standard use case. Methods ------- cleanUp ^^^^^^^ .. java:method:: public static void cleanUp() :outertype: SCMEmbedEnvironment Cleans up singleton instance of ``SCMEmbedEnvironment`` if exists. This can be called if middleware components are no longer to be used. Be aware that ``SCMEmbedEnvironment`` singleton instance will be completely destroyed internally after several minutes ; do not keep any reference to it if this static method is called. getSCMEmbedEnvironment ^^^^^^^^^^^^^^^^^^^^^^ .. java:method:: public static SCMEmbedEnvironment getSCMEmbedEnvironment(Context context) throws SCMException :outertype: SCMEmbedEnvironment Initializes singleton instance of this environment. This method must be called in Main Thread. :param context: the application context. :throws SCMException: when the SCWS cannot be reached on the device. :return: SCMEmbedEnvironment singleton instance. getSCMEmbedEnvironment ^^^^^^^^^^^^^^^^^^^^^^ .. java:method:: public static SCMEmbedEnvironment getSCMEmbedEnvironment() throws SCMException :outertype: SCMEmbedEnvironment Initializes singleton instance of this environment. Requires the application to be already set. :throws SCMException: when the SCWS cannot be reached on the device. :return: SCMEmbedEnvironment singleton instance.