From 780c7f3d2098b6d44d766cd3b0deb19587705faf Mon Sep 17 00:00:00 2001 From: Nick Newman Date: Fri, 23 Jan 2026 16:37:33 -0500 Subject: [PATCH] Update branding to HERE --- .../.vscode/launch.json | 4 +- .../integrate-with-workspace/JavaTest.launch | 2 +- how-to/integrate-with-workspace/README.md | 10 +- .../dependency-reduced-pom.xml | 102 +++++++++--------- how-to/integrate-with-workspace/pom.xml | 6 +- .../{openfin => here}/starter/java/Apps.java | 2 +- .../starter/java/CommandLineOptions.java | 2 +- .../starter/java/Interop.java | 2 +- .../{openfin => here}/starter/java/Main.java | 2 +- 9 files changed, 66 insertions(+), 66 deletions(-) rename how-to/integrate-with-workspace/src/com/{openfin => here}/starter/java/Apps.java (99%) rename how-to/integrate-with-workspace/src/com/{openfin => here}/starter/java/CommandLineOptions.java (98%) rename how-to/integrate-with-workspace/src/com/{openfin => here}/starter/java/Interop.java (99%) rename how-to/integrate-with-workspace/src/com/{openfin => here}/starter/java/Main.java (99%) diff --git a/how-to/integrate-with-workspace/.vscode/launch.json b/how-to/integrate-with-workspace/.vscode/launch.json index 258646f..f913e8c 100644 --- a/how-to/integrate-with-workspace/.vscode/launch.json +++ b/how-to/integrate-with-workspace/.vscode/launch.json @@ -15,7 +15,7 @@ "type": "java", "name": "Single Instance Id", "request": "launch", - "mainClass": "com.openfin.starter.java.Main", + "mainClass": "com.here.starter.java.Main", "projectName": "test", "args": "workspaceUUID=workspace-platform-starter nativeUUID=java-interop-example registerIntents" }, @@ -23,7 +23,7 @@ "type": "java", "name": "Multi Instance Id", "request": "launch", - "mainClass": "com.openfin.starter.java.Main", + "mainClass": "com.here.starter.java.Main", "projectName": "test", "args": "workspaceUUID=workspace-platform-starter nativeUUID=java-interop-example/62d2b603-0b65-411e-af4e-014528af75e6 registerIntents" }, diff --git a/how-to/integrate-with-workspace/JavaTest.launch b/how-to/integrate-with-workspace/JavaTest.launch index daed600..a74713b 100644 --- a/how-to/integrate-with-workspace/JavaTest.launch +++ b/how-to/integrate-with-workspace/JavaTest.launch @@ -2,7 +2,7 @@ - + diff --git a/how-to/integrate-with-workspace/README.md b/how-to/integrate-with-workspace/README.md index d29d9ae..4493d2c 100644 --- a/how-to/integrate-with-workspace/README.md +++ b/how-to/integrate-with-workspace/README.md @@ -1,13 +1,13 @@ # Java-Starter -A starter repo providing examples of how to use the OpenFin Java Adapter. -This repo contains a simple Java application that uses the OpenFin Java Adapter to launch an OpenFin application. +A starter repo providing examples of how to use the HERE Java Adapter. +This repo contains a simple Java application that uses the HERE Java Adapter to launch a HERE application. -It uses maven as the build tool and the OpenFin Java Adapter is available on Maven Central. +It uses maven as the build tool and the HERE Java Adapter is available on Maven Central. Please refer to the pom.xml file for the dependencies. ## Getting Started 1. Clone this repo -2. Install the OpenFin Java Adapter and its dependencies using `mvn install` +2. Install the HERE Java Adapter and its dependencies using `mvn install` 3. Start Java-Starter, the java starter contains the main method 4. To package into a jar you can use mvn package (or the tools provided by your IDE to execute the command). @@ -33,5 +33,5 @@ This example supports the following command line arguments: ## Documentation -- https://developers.openfin.co/of-docs/docs/java-api +- https://resources.here.io/docs/core/adapters/java/ - https://search.maven.org/artifact/co.openfin/openfin-desktop-java-adapter \ No newline at end of file diff --git a/how-to/integrate-with-workspace/dependency-reduced-pom.xml b/how-to/integrate-with-workspace/dependency-reduced-pom.xml index fec683d..ef0031b 100644 --- a/how-to/integrate-with-workspace/dependency-reduced-pom.xml +++ b/how-to/integrate-with-workspace/dependency-reduced-pom.xml @@ -1,51 +1,51 @@ - - - 4.0.0 - openfin.starter.integrate.workspace - openfin.starter.integrate.workspace - 0.0.1-SNAPSHOT - - src - - - maven-compiler-plugin - 3.8.1 - - 16 - - - - maven-jar-plugin - 3.2.0 - - - - com.openfin.starter.java.Main - true - - - - - - maven-shade-plugin - 3.2.4 - - - package - - shade - - - - - - - - - - oss-sonatype - oss-sonatype - https://oss.sonatype.org/content/repositories/snapshots/ - - - + + + 4.0.0 + here.starter.integrate.workspace + here.starter.integrate.workspace + 0.0.1-SNAPSHOT + + src + + + maven-compiler-plugin + 3.8.1 + + 16 + + + + maven-jar-plugin + 3.2.0 + + + + com.here.starter.java.Main + true + + + + + + maven-shade-plugin + 3.2.4 + + + package + + shade + + + + + + + + + + oss-sonatype + oss-sonatype + https://oss.sonatype.org/content/repositories/snapshots/ + + + diff --git a/how-to/integrate-with-workspace/pom.xml b/how-to/integrate-with-workspace/pom.xml index 758de36..f9021b6 100644 --- a/how-to/integrate-with-workspace/pom.xml +++ b/how-to/integrate-with-workspace/pom.xml @@ -1,7 +1,7 @@ 4.0.0 - openfin.starter.integrate.workspace - openfin.starter.integrate.workspace + here.starter.integrate.workspace + here.starter.integrate.workspace 0.0.1-SNAPSHOT @@ -99,7 +99,7 @@ - com.openfin.starter.java.Main + com.here.starter.java.Main true diff --git a/how-to/integrate-with-workspace/src/com/openfin/starter/java/Apps.java b/how-to/integrate-with-workspace/src/com/here/starter/java/Apps.java similarity index 99% rename from how-to/integrate-with-workspace/src/com/openfin/starter/java/Apps.java rename to how-to/integrate-with-workspace/src/com/here/starter/java/Apps.java index 5680c51..b517a67 100644 --- a/how-to/integrate-with-workspace/src/com/openfin/starter/java/Apps.java +++ b/how-to/integrate-with-workspace/src/com/here/starter/java/Apps.java @@ -1,4 +1,4 @@ -package com.openfin.starter.java; +package com.here.starter.java; import org.json.JSONArray; import org.json.JSONObject; diff --git a/how-to/integrate-with-workspace/src/com/openfin/starter/java/CommandLineOptions.java b/how-to/integrate-with-workspace/src/com/here/starter/java/CommandLineOptions.java similarity index 98% rename from how-to/integrate-with-workspace/src/com/openfin/starter/java/CommandLineOptions.java rename to how-to/integrate-with-workspace/src/com/here/starter/java/CommandLineOptions.java index df62904..5bcae9c 100644 --- a/how-to/integrate-with-workspace/src/com/openfin/starter/java/CommandLineOptions.java +++ b/how-to/integrate-with-workspace/src/com/here/starter/java/CommandLineOptions.java @@ -1,4 +1,4 @@ -package com.openfin.starter.java; +package com.here.starter.java; public class CommandLineOptions { private static String[] commandLineArgs; diff --git a/how-to/integrate-with-workspace/src/com/openfin/starter/java/Interop.java b/how-to/integrate-with-workspace/src/com/here/starter/java/Interop.java similarity index 99% rename from how-to/integrate-with-workspace/src/com/openfin/starter/java/Interop.java rename to how-to/integrate-with-workspace/src/com/here/starter/java/Interop.java index 3bc4ded..e22a4fa 100644 --- a/how-to/integrate-with-workspace/src/com/openfin/starter/java/Interop.java +++ b/how-to/integrate-with-workspace/src/com/here/starter/java/Interop.java @@ -1,4 +1,4 @@ -package com.openfin.starter.java; +package com.here.starter.java; import java.awt.Frame; import java.lang.System; diff --git a/how-to/integrate-with-workspace/src/com/openfin/starter/java/Main.java b/how-to/integrate-with-workspace/src/com/here/starter/java/Main.java similarity index 99% rename from how-to/integrate-with-workspace/src/com/openfin/starter/java/Main.java rename to how-to/integrate-with-workspace/src/com/here/starter/java/Main.java index 9a0eb9e..e00c349 100644 --- a/how-to/integrate-with-workspace/src/com/openfin/starter/java/Main.java +++ b/how-to/integrate-with-workspace/src/com/here/starter/java/Main.java @@ -1,4 +1,4 @@ -package com.openfin.starter.java; +package com.here.starter.java; import com.openfin.desktop.snapshot.SnapshotSource; import com.openfin.desktop.interop.ContextGroupInfo;