Skip to main content

Apex SDK reference

note

This SDK is not currently supported on Harness Self-Managed Enterprise Edition (on premises).

This SDK is currently in beta. This topic describes how to use the Harness Feature Flags Apex SDK for your Apex application.

For getting started quickly, you can use our sample code from the Apex SDK README. You can also clone and run a sample application from the Apex SDK GitHub Repository.

Before you begin

Make sure you read and understand:

Version

Latest SDK version can be found on GitHub Release Page

Requirements

To use this SDK, make sure you:  

Install the SDK

Install the SDK by running the following command:

$> sfdx force:source:deploy --targetusername='YOUR TARGET ORG' --sourcepath='force-app'

Initialize the SDK

To initialize the Apex SDK, you need to:

  1. Add your Server SDK key to connect to your Harness Environment.
  2. Add a Target that you want to Evaluate against a Feature Flag.
  3. (Optional) Configure the SDK.
  4. Complete the initialization with the SDK using the Server SDK Key, Target, and Configuration parameters you set.

Add the Server SDK Key

To connect to the correct Environment that you set up on the Harness Platform, you need to add the Server SDK Key from that Environment. Input the Server SDK Key, for example:

FFClient client = new FFClient('Your SDK Key', target, config);

Add a Target

Details

What is a Target? Targets are used to control which users see which Variation of a Feature Flag, for example, if you want to do internal testing, you can enable the Flag for some users and not others. When creating a Target, you give it a name and a unique identifier. Often Targets are users but you can create a Target from anything that can be uniquely identified, such as an app or a machine.

For more information about Targets, go to Targeting Users With Flags.

To create a Target, pass in arguments for the following:

ParameterDescriptionRequired?Example
IdentifierUnique ID for the TargetRequired.identifier('Harness')
NameName for this Target. This does not have to be unique. Note: If you don’t provide a value, Harness uses the ID as the name. Optional.name('Harness')
Regex requirements for target names and identifiers

Identifier

Regex: ^[A-Za-z0-9.@_-]*$
Must consist of only alphabetical characters, numbers, and the following symbols:
. (period)
@ (at sign)
-(dash)
_ (underscore)

For example:

FFTarget target = FFTarget.builder().identifier('Harness').name('Harness').build();

Configure the SDK

When initializing the SDK, you also have the option of providing alternative configurations by using FFConfig.Builder(). 

You can configure the following base features of the SDK:

NameDescriptionDefault value
baseURLThe URL used to fetch Feature Flag Evaluations. When using the Relay Proxy, change this to: http://localhost:7000https://config.ff.harness.io/api/1.0
evalExpireAfterThe time (in seconds) that evaluations expire. The minimum allowed is 300 seconds. 300
evalExpireAuthThe time (in seconds) that re-authentication occurs. The minimum allowed is 300 seconds. 300 
cacheThe details of your cache. You must set the namespace and partition.No default - you must set the namespace and partition.

 

For example: 

// set cache Namespace and Partition  
FFOrgCache cache = new FFOrgCache('local', 'basic');
FFConfig config = new FFConfig.builder().cache(cache).build();

Complete the initialization

To complete the initialization, create an instance of the FFClient and pass in the sdkKey, target data, and any configuration options you want to include, for example: 

FFClient client = new FFClient('Your SDK Key', target, config);

Sample of initializing the SDK

// Set flagKey to the feature flag key you want to evaluate.  
String flag = 'harnessappdemodarkmode';

// set cache Namespace and Partition
FFOrgCache cache = new FFOrgCache('local', 'basic');
FFConfig config = new FFConfig.builder().cache(cache).build(); 

// Set up the target properties.
FFTarget target = FFTarget.builder().identifier('Harness').name('Harness').build();
FFClient client = new FFClient('Your SDK Key', target, config);

 

Evaluating a flag

Evaluating a Flag is when the SDK processes all Flag rules and returns the correct Variation of that Flag for the Target you provide. 

If a matching Flag can’t be found, or the SDK can’t remotely fetch flags, the default value is returned. 

There are different methods for the different Variation types and for each method you need to pass in:

  • Identifier of the Flag you want to evaluate
  • The Target object you want to evaluate against
  • The default Variation

For example:

// Bool evaluation  
Boolean value = client.evaluate(flag, false);
System.debug('Feature flag ' + flag + ' is '+ value + ' for this user');

 

Test your app is connected to Harness

When you receive a response showing the current status of your Feature Flag, go to the Harness Platform and toggle the Flag on and off. Then, check your app to verify if the Flag Variation displayed is updated with the Variation you toggled.

note

The SDK must run for at least 60 seconds before it sends metrics. Please ensure metrics have not been disabled in the SDK.

Close the SDK client

In most applications, you won't need to close the SDK client.

However, you should close the SDK client if:

  • Your application is about to terminate. Closing the client ensures that all associated resources are released.
  • You have determined that you do not need to evaluate flags again in your application lifecycle.
important

The SDK does not evaluate flags after the client is closed.

Sample code for an Apex application

// Set flagKey to the feature flag key you want to evaluate.  
String flag = 'harnessappdemodarkmode';
 
// set cache Namespace and Partition
FFOrgCache cache = new FFOrgCache('local', 'basic');
FFConfig config = new FFConfig.builder().baseUrl(“harness url”).evalExpireAfter(300).authExpireAfter(60*60*24).cache(cache).build();
 
// Set up the target properties.
FFTarget target = FFTarget.builder().identifier('HT_1').name('Harness_Target_1').build();
 
FFClient client = new FFClient('Your SDK Key', target, config);
 
// Bool evaluation
Boolean value = client.evaluate(flag, false);
System.debug('Feature flag ' + flag + ' is '+ value + ' for this user');