This repository has been archived by the owner on Apr 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/add location to device for direct data logging (#25)
* Add location attribute in Device model Added a location attribute to the Device model to provide more detailed information about devices. The 'location' attribute will allow to track the whereabouts of a device, enhancing the application's device management capabilities. The DeviceCategory class was minimally modified for optimal code formatting. * Update version in pom.xml The version of the fiware-integration-layer in the pom.xml file has been updated from 6.0.0 to 6.1.0. This change reflects the addition of the 'location' attribute to the Device model, which enhances device tracking and management capabilities. Minor modifications were also made to the DeviceCategory class for improved code formatting. * Added functionality to delete a device from the system Imported FiwareIntegrationLayerException and added a delete function to the AbstractEntityIntegrationService class to allow deletion of a device from the system by id. A test has been written in DeviceIntegrationServiceIT to ensure its proper operation. This change was made to improve the device management, where we can now delete devices that are no longer used or invalid.
- Loading branch information
1 parent
9b932b9
commit 81b0165
Showing
5 changed files
with
53 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,4 +28,5 @@ public class DeviceCategory { | |
* The value of the device category. | ||
*/ | ||
private List<String> value; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters