Module scim_server

Source
Expand description

Dynamic SCIM server implementation with runtime resource type registration.

This module provides a completely dynamic SCIM server that can handle any resource type registered at runtime, eliminating hard-coded resource types and enabling true schema-driven operations.

§Module Organization

  • core - Core ScimServer struct and initialization
  • registration - Resource type registration and operation support management
  • operations - CRUD operations for resources (create, read, update, delete, list, search)
  • schema_management - Schema-related operations and validation helpers
  • tests - Test infrastructure and comprehensive test cases

Re-exports§

pub use core::ScimServer;

Modules§

core
Core SCIM server structure and initialization.
operations
Resource CRUD operations for the SCIM server.
registration
Resource type registration and operation support management.
schema_management
Schema management operations for the SCIM server.