{"id":19541318,"url":"https://github.com/wingify/vwo-openfeature-provider-java","last_synced_at":"2026-03-10T14:02:29.926Z","repository":{"id":248107114,"uuid":"827776932","full_name":"wingify/vwo-openfeature-provider-java","owner":"wingify","description":"Openfeature Provider for VWO Java SDK","archived":false,"fork":false,"pushed_at":"2024-07-12T11:02:30.000Z","size":11,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-11-30T10:59:42.660Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://developers.vwo.com/v2/docs/java-openfeature-provider","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wingify.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-12T10:54:45.000Z","updated_at":"2025-03-10T08:35:59.000Z","dependencies_parsed_at":"2024-07-12T12:55:11.591Z","dependency_job_id":null,"html_url":"https://github.com/wingify/vwo-openfeature-provider-java","commit_stats":null,"previous_names":["wingify/vwo-openfeature-provider-java"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/wingify/vwo-openfeature-provider-java","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wingify%2Fvwo-openfeature-provider-java","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wingify%2Fvwo-openfeature-provider-java/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wingify%2Fvwo-openfeature-provider-java/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wingify%2Fvwo-openfeature-provider-java/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wingify","download_url":"https://codeload.github.com/wingify/vwo-openfeature-provider-java/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wingify%2Fvwo-openfeature-provider-java/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30336068,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T12:41:07.687Z","status":"ssl_error","status_checked_at":"2026-03-10T12:41:06.728Z","response_time":106,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-11T03:09:38.309Z","updated_at":"2026-03-10T14:02:29.894Z","avatar_url":"https://github.com/wingify.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# VWO OpenFeature Provider JAVA\n\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0)\n\n## Requirements\n\nThe Java SDK supports:\n\n* Open JDK - 8 onwards\n* Oracle JDK - 8 onwards\n\n## SDK Installation\n\nInstall dependencies using `mvn install`\n\nAdd below Maven dependency in your project.\n\n\n```java\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.vwo.sdk\u003c/groupId\u003e\n    \u003cartifactId\u003evwo-openfeature-provider-java\u003c/artifactId\u003e\n    \u003cversion\u003eLATEST\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n## Basic Usage\n ```java\n import dev.openfeature.sdk.*;\n import com.vwo.VWOProvider;\n import java.util.Map;\n OpenFeatureAPI api = OpenFeatureAPI.getInstance();\n Map\u003cString, Object\u003e options = new HashMap\u003c\u003e();\n options.put(\"accountId\", 1234);\n options.put(\"sdkKey\", \"32-alpha-numeric-sdk-key\");\n api.setProvider(new VWOProvider(vwoClient));\n EvaluationContext context = new ImmutableContext(new HashMap() {\n        {\n            put(\"userId\", new Value(\"user1\")); // userId\n            put(\"key\", new Value(\"variableKey\")); // variable key\n            put(\"customVariables\", new Value(new ImmutableContext(new HashMap() {\n                {\n                    put(\"key\", new Value(\"value\"));\n                }\n            })));\n        }\n });\n \nClient vwoClient = api.getClient(\"vwo-openfeature-provider-java-provider\");\napiClient.getStringValue(\"featureKey\", \"defaultValue\", context)\n ```\n\nFor more appenders, refer [this](https://logback.qos.ch/manual/appenders.html).\n\n## Authors\n\n* [Abhishek Joshi](https://github.com/Abhi591)\n\n## Changelog\n\nRefer [CHANGELOG.md](https://github.com/wingify/vwo-openfeature-provider-java/blob/master/CHANGELOG.md)\n\n## Contributing\n\nPlease go through our [contributing guidelines](https://github.com/wingify/vwo-openfeature-provider-java/blob/master/CONTRIBUTING.md)\n\n## Code of Conduct\n\n[Code of Conduct](https://github.com/wingify/vwo-openfeature-provider-java/blob/master/CODE_OF_CONDUCT.md)\n\n## License\n\n[Apache License, Version 2.0](https://github.com/wingify/vwo-openfeature-provider-java/blob/master/LICENSE)\n\nCopyright 2024 Wingify Software Pvt. Ltd.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwingify%2Fvwo-openfeature-provider-java","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwingify%2Fvwo-openfeature-provider-java","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwingify%2Fvwo-openfeature-provider-java/lists"}