| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Backoffice layer library extending the application module with customer impersonation, audit trail, and enhanced security context.
Firefly Framework Backoffice extends the application layer for internal backoffice and portal systems. It adds backoffice-specific context management, customer impersonation capabilities, enhanced security context with operator tracking, and abstract controllers tailored for administrative operations.
The module provides BackofficeContext and BackofficeSecurityContext which extend the application-layer contexts with operator identity, impersonated customer tracking, and audit trail support. Abstract controllers provide standardized REST patterns for backoffice resource management.
This library is designed for internal-facing microservices that require administrative capabilities, customer support workflows, and enhanced audit tracking beyond what the standard application layer provides.
<dependency>
<groupId>org.fireflyframework</groupId>
<artifactId>fireflyframework-backoffice</artifactId>
<version>26.02.07</version>
</dependency>import org.fireflyframework.common.backoffice.controller.AbstractBackofficeController;
import org.fireflyframework.common.backoffice.context.BackofficeContext;
@RestController
@RequestMapping("/api/backoffice/customers")
public class CustomerBackofficeController extends AbstractBackofficeController {
@GetMapping("/{customerId}")
public Mono<CustomerDetails> getCustomer(
@PathVariable String customerId,
BackofficeContext context) {
// context provides operator identity and impersonation info
return customerService.findById(customerId, context);
}
}firefly:
backoffice:
context:
operator-header: X-Operator-Id
impersonation-header: X-Impersonated-CustomerNo additional documentation available for this project.
Contributions are welcome. Please read the CONTRIBUTING.md guide for details on our code of conduct, development process, and how to submit pull requests.
Copyright 2024-2026 Firefly Software Foundation.
Licensed under the Apache License, Version 2.0. See LICENSE for details.
| Back | FazBrowse Home | New Git URL |