{"id":15490299,"url":"https://github.com/myconsciousness/entity-validator","last_synced_at":"2025-03-28T16:27:31.232Z","repository":{"id":118166280,"uuid":"308855577","full_name":"myConsciousness/entity-validator","owner":"myConsciousness","description":"Envali is a Java-based framework that provides an intuitive and productive way to validate Entity's field elements by powerful annotations!","archived":false,"fork":false,"pushed_at":"2021-01-26T10:31:35.000Z","size":664,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-10-19T09:17:19.982Z","etag":null,"topics":["annotations","aop-framework","entity","entity-validator","envali","framework","gradle","java","validation","validator"],"latest_commit_sha":null,"homepage":"https://myconsciousness.github.io/entity-validator","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/myConsciousness.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-10-31T10:21:22.000Z","updated_at":"2021-03-20T12:27:12.000Z","dependencies_parsed_at":null,"dependency_job_id":"edb2cd0d-ee36-4915-a0b4-9b5165845115","html_url":"https://github.com/myConsciousness/entity-validator","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/myConsciousness%2Fentity-validator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/myConsciousness%2Fentity-validator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/myConsciousness%2Fentity-validator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/myConsciousness%2Fentity-validator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/myConsciousness","download_url":"https://codeload.github.com/myConsciousness/entity-validator/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246061760,"owners_count":20717498,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["annotations","aop-framework","entity","entity-validator","envali","framework","gradle","java","validation","validator"],"created_at":"2024-10-02T07:20:26.385Z","updated_at":"2025-03-28T16:27:31.209Z","avatar_url":"https://github.com/myConsciousness.png","language":"Java","readme":"![Build](https://img.shields.io/badge/Build-Automated-2980b9.svg?style=for-the-badge)\n![Latest Version](https://img.shields.io/badge/Latest_Version-v1.0.4-27ae60.svg?style=for-the-badge)\n![License](https://img.shields.io/badge/License-Apache_2.0-e74c3c.svg?style=for-the-badge)\u003c/br\u003e\n![Java CI with Gradle](https://github.com/myConsciousness/entity-validator/workflows/Java%20CI%20with%20Gradle/badge.svg?branch=main)\n\n# Envali: Entity Validator\n\n\u003c!-- START doctoc generated TOC please keep comment here to allow auto update --\u003e\n\u003c!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --\u003e\n**Table of Contents**\n\n- [What is it?](#what-is-it)\n- [Benefits](#benefits)\n- [How To Use](#how-to-use)\n  - [1. Add the dependencies](#1-add-the-dependencies)\n- [License](#license)\n- [More Information](#more-information)\n\n\u003c!-- END doctoc generated TOC please keep comment here to allow auto update --\u003e\n\n## What is it?\n\n**_Provides intuitive and productive Entity validation capabilities!_**\n\n`Envali` is a Java-based framework that provides an intuitive and productive way to validate Entity's field elements.\u003c/br\u003e\nValidation items can be configured by adding annotations to the target field in `AOP`.\n\n## Benefits\n\n- Intuitive addition of validation annotations\n- Easy to manage validation items per Entity\n- Safe execution of the validation by the framework\n- Improve source code maintainability by centralizing the validation\n\n## How To Use\n\n### 1. Add the dependencies\n\n\u003e **_Note:_**\u003c/br\u003e\n\u003e Replace version you want to use. Check the latest [Packages](https://github.com/myConsciousness/entity-validator/packages).\u003c/br\u003e\n\u003e Please contact me for a token to download the package.\n\n**_Maven_**\n\n```xml\n\u003cdependency\u003e\n  \u003cgroupId\u003eorg.thinkit.framework.envali\u003c/groupId\u003e\n  \u003cartifactId\u003eentity-validator\u003c/artifactId\u003e\n  \u003cversion\u003ev1.0.4\u003c/version\u003e\n\u003c/dependency\u003e\n\n\u003cservers\u003e\n  \u003cserver\u003e\n    \u003cid\u003egithub\u003c/id\u003e\n    \u003cusername\u003emyConsciousness\u003c/username\u003e\n    \u003cpassword\u003exxxxxxxxxxxxxxxxxx\u003c/password\u003e\n  \u003c/server\u003e\n\u003c/servers\u003e\n```\n\n**_Gradle_**\n\n```gradle\nrepositories {\n    maven {\n        name = \"GitHubPackages\"\n        url = uri(\"https://maven.pkg.github.com/myConsciousness/entity-validator\")\n        credentials {\n          username = \"myConsciousness\"\n          password = \"xxxxxxxxxxxxxxxxxx\"\n        }\n    }\n}\n\ndependencies {\n    implementation 'org.thinkit.framework.envali:entity-validator:v1.0.4'\n}\n```\n\n## License\n\n```license\nCopyright 2020 Kato Shinya.\n\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except\nin compliance with the License. You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under the License\nis distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express\nor implied. See the License for the specific language governing permissions and limitations under\nthe License.\n```\n\n## More Information\n\n`Envali: Entity Validator` was designed and implemented by Kato Shinya, who works as a freelance developer.\n\nRegardless of the means or content of communication, I would love to hear from you if you have any questions or concerns. I do not check my email box very often so a response may be delayed, anyway thank you for your interest!\n\n- [Creator Profile](https://github.com/myConsciousness)\n- [Creator Website](https://myconsciousness.github.io/)\n- [License](https://github.com/myConsciousness/entity-validator/blob/master/LICENSE)\n- [Release Note](https://github.com/myConsciousness/entity-validator/releases)\n- [Package](https://github.com/myConsciousness/entity-validator/packages)\n- [File a Bug](https://github.com/myConsciousness/entity-validator/issues)\n- [Reference](https://myconsciousness.github.io/entity-validator/)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmyconsciousness%2Fentity-validator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmyconsciousness%2Fentity-validator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmyconsciousness%2Fentity-validator/lists"}