Skip to content

Commit c5f9bc8

Browse files
Merge pull request #32 from testsigmahq/feat/support-runtime-data-provider
feat(TFS-1143): Added RuntimeData support in SDK to fetch runtime variables.
2 parents f924eee + d7e7de2 commit c5f9bc8

4 files changed

Lines changed: 18 additions & 2 deletions

File tree

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ repositories {
2727
}
2828

2929
group = 'com.testsigma'
30-
version = '1.2.13_cloud'
30+
version = '1.2.14_cloud'
3131
description = 'Testsigma Java SDK'
3232
java.sourceCompatibility = JavaVersion.VERSION_11
3333

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ RELEASE_SIGNING_ENABLED=true
33

44
GROUP=com.testsigma
55
POM_ARTIFACT_ID=testsigma-java-sdk
6-
VERSION_NAME=1.2.13_cloud
6+
VERSION_NAME=1.2.14_cloud
77

88
POM_NAME=Testsigma Java SDK
99
POM_DESCRIPTION=Testsigma Java SDK
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
package com.testsigma.sdk;
2+
3+
public interface RuntimeDataProvider {
4+
String getRuntimeData(String variableName) throws Exception;
5+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
package com.testsigma.sdk.annotation;
2+
3+
import java.lang.annotation.ElementType;
4+
import java.lang.annotation.Retention;
5+
import java.lang.annotation.RetentionPolicy;
6+
import java.lang.annotation.Target;
7+
8+
@Target(ElementType.FIELD)
9+
@Retention(RetentionPolicy.RUNTIME)
10+
public @interface RunTimeDataProvider {
11+
}

0 commit comments

Comments
 (0)