Skip to content

Afnanalam/java-example

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

360 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Java Adapter Example

Overview

The following repo contains examples for OpenFin's Java adapter.

Guidelines

Run the example of connecting to OpenFin and creating applications

  1. Clone this repository

  2. Go to release directory and start run.bat

  3. Once the java app starts, click on Start button, which should start OpenFin Runtime. The java app will wait and try to connect to OpenFin Runtime.

  4. Once OpenFin Runtime is started and Java app connects successfully, "Create Application" button is enabled. You can click on the button to bring up a dialog for entering configuration of any HTML5 app. By default, the dialog is pre-populated with configuration for Hello OpenFin demo app.

  5. You can use buttons in Window Control section to move and re-size HTML5 window of Hello OpenFin app.

  6. Click "Create Application" button, which should start a dialog with all the fields pre-populated for our Hello OpenFin demo HTML5 application. Just click on "Create" button.

  7. After Hello OpenFin starts, you can use the buttons under Window Control of Java app to control Hello OpenFin window.

Source Code Review

Source code for the example is located in /src/main/java/com/openfin/desktop/demo/OpenFinDesktopDemo.java. The followings overview of how it communicates with OpenFin Runtime with API calls supported by the Java adapter:

  1. Create connection object:
	this.desktopConnection = new DesktopConnection("OpenFinDesktopDemo");

This code just creates an instance of DesktopConnection and it does not try to connect to runtime.

  1. Launch and connect to stable version of OpenFin runtime:
	// create an instance of RuntimeConfiguration and configure Runtime by setting properties in RuntimeConfiguration
	this.runtimeConfiguration = new RuntimeConfiguration();
	// launch and connect to OpenFin Runtime
	desktopConnection.connect(this.runtimeConfiguration, listener, 10000);

listener is an instance of DesktopStateListener which provides callback on status of connections to runtime.

  1. Create new application when clicking on Create App:
   Application app = new Application(options, desktopConnection, new AckListener() {
   	@Override
   	public void onSuccess(Ack ack) {
   		Application application = (Application) ack.getSource();
   		application.run();   // run the app
   	}
   	@Override
   	public void onError(Ack ack) {
   	}
   });

options is an instance of ApplicationOptions, which is populated from App Create dialog. AckListener interface provides callback for the operation.

Once the application is created successfully, you can take actions on its window:

  1. Change opacity:
	WindowOptions options = new WindowOptions();
	options.setOpacity(newOpacityValue);
	application.getWindow().updateOptions(options, null);
  1. Change Window size
	application.getWindow().resizeBy(10, 10, "top-left");
  1. Publishes messages to a topic with InterApplicationBus
	org.json.JSONObject message = createSomeJsonMessage();
	desktopConnection.getInterApplicationBus().publish("someTopic", message);
  1. Subscribes to a topic with InterApplicationBus
	desktopConnection.getInterApplicationBus().subscribe("*", "someTopic", new BusListener() {
		public void onMessageReceived(String sourceUuid, String topic, Object payload) {
			JSONObject message = (JSONObject) payload;
		}
	});

Run the example of docking Java Swing window with HTML5 application

  1. Clone this repository

  2. Go to release directory and start docking.bat

  3. Once the java app starts, click on "Launch OpenFin" button, which should start OpenFin Runtime and "Hello OpenFin" HTML5 demo app. The java app will wait and try to connect to OpenFin Runtime.

  4. After clicking "Dock to HTML5 app" button, you can move either window to see docking effect.

  5. Click "Undock from HTML5 app" to undock 2 windows

Source Code Review for docking windows

Source code for the example is located in /src/main/java/com/openfin/desktop/demo/OpenFinDockingDemo.java.

  1. Create connection object:
	this.desktopConnection = new DesktopConnection("OpenFinDockingDemo", "localhost", port);

This code just creates an instance and it does not try to connect to runtime.

  1. Launch and connect to stable version of OpenFin runtime:
	desktopConnection.connectToVersion("stable", listener, 60);

listener is an instance of DesktopStateListener which provides callback on status of connections to runtime.

  1. Once Runtime is running, an instance of DockingManager is create with
	this.dockingManager = new DockingManager(this.desktopConnection, javaParentAppUuid);
  1. Any OpenFin window can be registered with DockingManager with
	dockingManager.registerWindow(openFinWindow);
  1. Any Java window can be registered with DockingManager with
	dockingManager.registerJavaWindow(javaWindowName, jFrame, AckListener);
  1. An application can receive dock and undock events from DockingManger with
	desktopConnection.getInterApplicationBus().subscribe("*", "window-docked", EventListener);
	desktopConnection.getInterApplicationBus().subscribe("*", "window-undocked", EventListener);
  1. An application can request DockingManager to undock a window with:
	JSONObject msg = new JSONObject();
	msg.put("applicationUuid", javaParentAppUuid);
	msg.put("windowName", javaWindowName);
	desktopConnection.getInterApplicationBus().publish("undock-window", msg);

Once the demo is running, Windows snap while being draggted close to other windows. Snapped windows dock on mounse release.

Run the example of embedding HTML5 application into a Java Swing window

  1. Clone this repository

  2. Go to release directory and start embed.bat

  3. Once the java app starts, click on "Launch OpenFin" button, which should start OpenFin Runtime and embed the OpenFin application that points to https://openfin.co

  4. Click "Shutdown OpenFin" button to close HTML5 application and the Java Swing window

Source Code Review for embedded OpenFin application

Source code for the example is located in /src/main/java/com/openfin/desktop/demo/WindowEmbedDemo.java

  1. create a canvas and place it where the HTML5 application should be embedded.
	embedCanvas = new java.awt.Canvas();
	panel.add(embedCanvas, BorderLayout.CENTER);
  1. listen to the canvas resize event, and resize embedded HTML5 application accordingly.
	embedCanvas.addComponentListener(new ComponentAdapter() {
	    @Override
	    public void componentResized(ComponentEvent event) {
	        super.componentResized(event);
	        Dimension newSize = event.getComponent().getSize();
	        try {
	            if (startupHtml5app != null) {
	                startupHtml5app.getWindow().embedComponentSizeChange((int)newSize.getWidth(), (int)newSize.getHeight());
	            }
	        } catch (Exception e) {
	            e.printStackTrace();
	        }
	    }
	});
  1. launch and connect to OpenFin runtime
	this.desktopConnection = new DesktopConnection(appUuid);
	DesktopStateListener listener = new DesktopStateListener() {...};
	RuntimeConfiguration configuration = new RuntimeConfiguration();
	configuration.setRuntimeVersion(desktopVersion);
	desktopConnection.connect(configuration, listener, 60);
  1. create HTML5 application
	ApplicationOptions options = new ApplicationOptions(startupUuid, startupUuid, openfin_app_url);
	WindowOptions mainWindowOptions = new WindowOptions();
	options.setMainWindowOptions(mainWindowOptions);
	DemoUtils.runApplication(options, this.desktopConnection, new AckListener() {...});
  1. embed HTML5 application into the canvas
	startupHtml5app = Application.wrap(this.startupUuid, this.desktopConnection);
	Window html5Wnd = startupHtml5app.getWindow();
	long parentHWndId = Native.getComponentID(this.embedCanvas);
	html5Wnd.embedInto(parentHWndId, this.embedCanvas.getWidth(), this.embedCanvas.getHeight(), new AckListener() {...});

More Info

More information and API documentation can be found at https://openfin.co/java-api/

Disclaimers

  • This is a starter example and intended to demonstrate to app providers a sample of how to approach an implementation. There are potentially other ways to approach it and alternatives could be considered.
  • Its possible that the repo is not actively maintained.

License

MIT

The code in this repository is covered by the included license.

However, if you run this code, it may call on the OpenFin RVM or OpenFin Runtime, which are covered by OpenFin’s Developer, Community, and Enterprise licenses. You can learn more about OpenFin licensing at the links listed below or just email us at [email protected] with questions.

https://openfin.co/developer-agreement/
https://openfin.co/licensing/

Support

Please enter an issue in the repo for any questions or problems.
Alternatively, please contact us at [email protected]

About

Examples for OpenFin Java adapter

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 95.5%
  • Batchfile 2.6%
  • HTML 1.7%
  • Other 0.2%