Skip to content

Commit

Permalink
Closes openhab#16338 Implemented ModifiablePersistenceServices and fi…
Browse files Browse the repository at this point in the history
…xed compiler warnings

Signed-off-by: René Ulbricht <rene_ulbricht@outlook.com>
  • Loading branch information
ulbi committed Feb 1, 2024
1 parent 3cee425 commit bcbb4b3
Show file tree
Hide file tree
Showing 6 changed files with 477 additions and 128 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,15 @@
*/
package org.openhab.persistence.mongodb.internal;

import org.eclipse.jdt.annotation.NonNullByDefault;

/**
* This class defines constant field names used in MongoDB documents.
* These field names are used to ensure consistent access to document properties.
*
* @author René Ulbricht - Initial contribution
*/
@NonNullByDefault
public final class MongoDBFields {
public static final String FIELD_ID = "_id";
public static final String FIELD_ITEM = "item";
Expand Down

0 comments on commit bcbb4b3

Please sign in to comment.