Getting Started
Initial Requirements
Before starting developing using PrivMX Endpoint Java follow our quick start guide
To connect it to your environment, you need:
Bridge URL
- URL address of the instance of your PrivMX BridgeSolution ID
- ID of the Solution provided by PrivMX Bridge during its initialization processUser Private Key
- the private key from the user's public-private key pair
You also need to use your own application server to manage users (and their keys) and Contexts.
Installation
Our Java libraries contain all the necessary assets and helpers to get started with PrivMX Endpoint. Select which level is the best for you. Go to Java overview to see the descriptions of each library.
Java Dependencies
- Add
mavenCentral()
repository to yoursettings.gradle
:
- Add dependency to
build.gradle
:
Shared Libraries
Java projects require you to install shared native libraries in a specified path and pass this path to java command as argument -Djava.library.path=
.
In Android, you just need to put the libraries in the src/main/jniLibs
directory.
Use our gradle plugin to download and unzip the shared libraries.
- Add
mavenCentral()
repository to yoursettings.gradle
:
- Add and configure the plugin in
build.gradle
:
For more information about the plugin, go to its dedicated section.
Alternatively, download them from GitHub releases assets with the same version as your privmx-endpoint-java
library.
Initial Assumptions
The initial assumptions for all the code examples below are as follows:
Connecting to PrivMX Bridge
To use any of the library's elements, you must first connect to PrivMX Bridge. Use the API keys mentioned earlier:
The active connection is kept by container
and can be accessed using container.getEndpoint(Long)
method.
Disconnecting from PrivMX Bridge
Closing PrivmxEndpointContainer
When you finish working with the container
, close it to end all connections, close the event loop, and release the resources being used.
You can also use a try-with-resources
block in Java or use
function in Kotlin.
Next Steps
With everything ready to go, now it's time to start using all of the platform's capabilities.
Learn how to use: