--- title: "Java" icon: "java" --- If you're working with Java, the official [Infisical Java SDK](https://github.com/Infisical/sdk/tree/main/languages/java) package is the easiest way to fetch and work with secrets for your application. ## Basic Usage ```java package com.example.app; import com.infisical.sdk.InfisicalClient; import com.infisical.sdk.schema.*; public class Example { public static void main(String[] args) { // Create a new Infisical Client ClientSettings settings = new ClientSettings(); settings.setClientID("MACHINE_IDENTITY_CLIENT_ID"); settings.setClientSecret("MACHINE_IDENTITY_CLIENT_SECRET"); InfisicalClient client = new InfisicalClient(settings); // Create the options for fetching the secret GetSecretOptions options = new GetSecretOptions(); options.setSecretName("TEST"); options.setEnvironment("dev"); options.setProjectID("PROJECT_ID"); // Fetch the sercret with the provided options GetSecretResponseSecret secret = client.getSecret(options); // Print the value System.out.println(secret.getSecretValue()); // Important to avoid memory leaks! // If you intend to use the client throughout your entire application, you can omit this line. client.close(); } } ``` This example demonstrates how to use the Infisical Java SDK in a Java application. The application retrieves a secret named `TEST` from the `dev` environment of the `PROJECT_ID` project. We do not recommend hardcoding your [Machine Identity Tokens](/platform/identities/overview). Setting it as an environment variable would be best. # Installation The Infisical Java SDK is hosted on the GitHub Packages Apache Maven registry. Because of this you need to configure your environment properly so it's able to pull dependencies from the GitHub registry. Please check [this guide from GitHub](https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-apache-maven-registry) on how to achieve this. Our package is [located here](https://github.com/Infisical/sdk/packages/2019741). Please follow the installation guide on the page. # Configuration Import the SDK and create a client instance with your [Machine Identity](/platform/identities/universal-auth). ```java import com.infisical.sdk.InfisicalClient; import com.infisical.sdk.schema.*; public class App { public static void main(String[] args) { ClientSettings settings = new ClientSettings(); settings.setClientID("MACHINE_IDENTITY_CLIENT_ID"); settings.setClientSecret("MACHINE_IDENTITY_CLIENT_SECRET"); InfisicalClient client = new InfisicalClient(settings); // Your client! } } ``` ### ClientSettings methods Your machine identity client ID. Your machine identity client secret. An access token obtained from the machine identity login endpoint. Your self-hosted absolute site URL including the protocol (e.g. `https://app.infisical.com`) ## Working with Secrets ### client.listSecrets(options) ```java ListSecretsOptions options = new ListSecretsOptions(); options.setEnvironment("dev"); options.setProjectID("PROJECT_ID"); options.setPath("/foo/bar"); options.setIncludeImports(false); SecretElement[] secrets = client.listSecrets(options); ``` Retrieve all secrets within the Infisical project and environment that client is connected to ### Methods The slug name (dev, prod, etc) of the environment from where secrets should be fetched from. The project ID where the secret lives in. The path from where secrets should be fetched from. Whether or not to include imported secrets from the current path. Read about [secret import](/platform/secret-reference) ### client.getSecret(options) ```java GetSecretOptions options = new GetSecretOptions(); options.setSecretName("TEST"); options.setEnvironment("dev"); options.setProjectID("PROJECT_ID"); GetSecretResponseSecret secret = client.getSecret(options); String secretValue = secret.getSecretValue(); ``` Retrieve a secret from Infisical. By default, `getSecret()` fetches and returns a shared secret. ### Methods The key of the secret to retrieve. The project ID where the secret lives in. The slug name (dev, prod, etc) of the environment from where secrets should be fetched from. The path from where secret should be fetched from. The type of the secret. Valid options are "shared" or "personal". If not specified, the default value is "shared". ### client.createSecret(options) ```java CreateSecretOptions createOptions = new CreateSecretOptions(); createOptions.setSecretName("NEW_SECRET"); createOptions.setEnvironment("dev"); createOptions.setProjectID("PROJECT_ID"); createOptions.setSecretValue("SOME SECRET VALUE"); createOptions.setPath("/"); // Default createOptions.setType("shared"); // Default CreateSecretResponseSecret newSecret = client.createSecret(createOptions); ``` Create a new secret in Infisical. ### Methods The key of the secret to create. The value of the secret. The project ID where the secret lives in. The slug name (dev, prod, etc) of the environment from where secrets should be fetched from. The path from where secret should be created. The type of the secret. Valid options are "shared" or "personal". If not specified, the default value is "shared". ### client.updateSecret(options) ```java UpdateSecretOptions options = new UpdateSecretOptions(); options.setSecretName("SECRET_TO_UPDATE"); options.setSecretValue("NEW SECRET VALUE"); options.setEnvironment("dev"); options.setProjectID("PROJECT_ID"); options.setPath("/"); // Default options.setType("shared"); // Default UpdateSecretResponseSecret updatedSecret = client.updateSecret(options); ``` Update an existing secret in Infisical. ### Methods The key of the secret to update. The new value of the secret. The project ID where the secret lives in. The slug name (dev, prod, etc) of the environment from where secrets should be fetched from. The path from where secret should be updated. The type of the secret. Valid options are "shared" or "personal". If not specified, the default value is "shared". ### client.deleteSecret(options) ```java DeleteSecretOptions options = new DeleteSecretOptions(); options.setSecretName("SECRET_TO_DELETE"); options.setEnvironment("dev"); options.setProjectID("PROJECT_ID"); options.setPath("/"); // Default options.setType("shared"); // Default DeleteSecretResponseSecret deletedSecret = client.deleteSecret(options); ``` Delete a secret in Infisical. ### Methods The key of the secret to update. The project ID where the secret lives in. The slug name (dev, prod, etc) of the environment from where secrets should be fetched from. The path from where secret should be deleted. The type of the secret. Valid options are "shared" or "personal". If not specified, the default value is "shared".