All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.umlg.runtime.adaptor.UmlgAdminAppFactory Maven / Gradle / Ivy

There is a newer version: 2.0.15
Show newest version
package org.umlg.runtime.adaptor;

import org.umlg.runtime.util.UmlgUtil;

import java.lang.reflect.Method;

public class UmlgAdminAppFactory {

	private static UmlgAdminApp umlgAdminApp;

	@SuppressWarnings("unchecked")
	public static UmlgAdminApp getUmlgAdminApp() {
		if (umlgAdminApp == null) {
			try {
                UmlgAdaptorImplementation umlgAdaptorImplementation = UmlgAdaptorImplementation.fromName(UmlgUtil.getBlueprintsImplementation());
				Class factory = Class.forName(umlgAdaptorImplementation.getUmlgAdminApp());
				Method m = factory.getDeclaredMethod("getInstance", new Class[0]);
                umlgAdminApp = (UmlgAdminApp) m.invoke(null);
			} catch (Exception e) {
				throw new RuntimeException(e);
			}
		}
		return umlgAdminApp;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy