{"id":21644523,"url":"https://github.com/samsung/restful","last_synced_at":"2025-09-04T00:06:12.687Z","repository":{"id":21916045,"uuid":"25240201","full_name":"Samsung/restful","owner":"Samsung","description":"Suggesting standard and optimized codes for RESTful API including filter/annotator for allowing user access and validating input data, user management, data management and some utils such as protecting data using 128/256-bit AES encryption.","archived":false,"fork":false,"pushed_at":"2023-04-07T10:42:48.000Z","size":4205,"stargazers_count":61,"open_issues_count":0,"forks_count":40,"subscribers_count":18,"default_branch":"master","last_synced_at":"2025-04-11T18:24:46.905Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Samsung.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":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2014-10-15T05:30:10.000Z","updated_at":"2025-03-01T15:03:21.000Z","dependencies_parsed_at":"2025-04-11T18:24:47.742Z","dependency_job_id":"92b28515-31ac-473c-b5e7-4a9930e5c1a6","html_url":"https://github.com/Samsung/restful","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Samsung/restful","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Samsung%2Frestful","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Samsung%2Frestful/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Samsung%2Frestful/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Samsung%2Frestful/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Samsung","download_url":"https://codeload.github.com/Samsung/restful/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Samsung%2Frestful/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273529554,"owners_count":25121829,"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","status":"online","status_checked_at":"2025-09-03T02:00:09.631Z","response_time":76,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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-25T05:40:43.263Z","updated_at":"2025-09-04T00:06:12.641Z","avatar_url":"https://github.com/Samsung.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"RESTful\n=======\n\nSuggesting the codes for RESTful API including filter/annotator for allowing user access and validating input data, user management, data management and some utils such as protecting data using 128/256-bit AES encryption and so on.\n\nPlease take a look at [readme](/doc/readme) to see release note.\n\n### Guide ###\nThe followings are quick guides:\u003cbr\u003e\n[A. Preparing development environment](/doc/Quick_Guide_1.docx)\u003cbr\u003e\n[B. Quick guide how to run RESTful using this project](/doc/Quick_Guide_2.docx)\u003cbr\u003e\nC. Customizing for your project (in progress)\n\n\n### Usage ###\n\n#### html ####\n##### User #####\n  - [x] [/restful/user/signup.html](/src/main/webapp/user/signup.html \"Creating new user\")\n  - [x] [/restful/user/signin.html](/src/main/webapp/user/signin.html \"Signing in\")\n  - [x] [/restful/user/profile.html](/src/main/webapp/user/profile.html \"Retrieving my information\")\n  - [x] [/restful/user/setting.html](/src/main/webapp/user/setting.html \"Updating/Deleting user information\")\n  - [x] [/restful/user/list.html](/src/main/webapp/user/list.html \"Retrieving user list\") (_admin only_)\n\n##### Note #####\n  - [x] [/restful/note/create.html](/src/main/webapp/note/create.html \"Creating new note\")\n  - [x] [/restful/note/update.html](/src/main/webapp/note/update.html \"Updating note\")\n  - [x] [/restful/note/content.html](/src/main/webapp/note/content.html \"Retrieving note content\")\n  - [x] [/restful/note/list.html](/src/main/webapp/note/list.html \"Retrieving note list\")\n\n#### Restful ####\n##### User #####\n```json\n// Creating a user\nPOST /restful/api/user/signup\nContent-Type: application/json\n{\n  \"name\": \"axpower\",\n  \"pwd\": \"*****\",\n  \"username\": \"RESTful\",\n  \"role\": \"User\"\n}\n\n// Signing in\nPOST /restful/api/user/signin\nContent-Type: application/json\n{\n  \"name\": \"axpower\",\n  \"pwd\": \"*****\"\n}\n\n// Signing out\nGET /restful/api/user/signout\nContent-Type: application/json\n\n// Retrieving my information \nGET /restful/api/user/profile\nContent-Type: application/json\n\n// Updating a user\nPUT /restful/api/user\nContent-Type: application/json\n{\n  \"name\": \"axpower\",\n  \"username\": \"Web service\"\n}\n\n// Deleting a user\nDELETE /restful/api/user\nContent-Type: application/json\n{\n  \"name\": \"axpower\"\n}\n\n// Retrieving a user (admin only)\nGET /restful/api/user/ax\nContent-Type: application/json\n\n// Retrieving a list of user with paging and search query (admin only)\nGET /restful/api/user/list \nGET /restful/api/user/list?pn=1\nGET /restful/api/user/list?pn=1\u0026q=ax\nContent-Type: application/json\n```\n\n##### Note #####\n```json\n// Creating a note\nPOST /restful/api/note\nContent-Type: application/json\n{\n  \"subject\": \"Hello\",\n  \"content\": \"Nice to meet you!\"\n}\n\n// Updating a note\nPUT /restful/api/note\nContent-Type: application/json\n{\n  \"idx\": 1,\n  \"subject\": \"Hello\",\n  \"content\": \"It's really nice to meet you.\"\n}\n\n// Deleting a note\nDELETE /restful/api/note\nContent-Type: application/json\n{\n  \"idx\": 1\n}\n\n// Retrieving a note\nGET /restful/api/note/1\nContent-Type: application/json\n\n// Retrieving a list of note with paging and search query\nGET /restful/api/note/list \nGET /restful/api/note/list?pn=1\nGET /restful/api/note/list?pn=1\u0026q=hello\nContent-Type: application/json\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamsung%2Frestful","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsamsung%2Frestful","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamsung%2Frestful/lists"}