Skip to content

Commit

Permalink
Rename Thing status variables to be more explicit (#2796)
Browse files Browse the repository at this point in the history
Signed-off-by: James Melville <[email protected]>
  • Loading branch information
jamesmelville authored Feb 23, 2022
1 parent 473198f commit e94de3f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ class ScriptJvmModelInferrer extends AbstractModelInferrer {
public static final String VAR_TRIGGERING_THING = "triggeringThing";

/** Variable name for the previous status of the triggering thing in a "thing status trigger" rule */
public static final String VAR_PREVIOUS_STATUS = "previousStatus";
public static final String VAR_PREVIOUS_STATUS = "previousThingStatus";

/** Variable name for the new status of the triggering thing in a "thing status trigger" rule */
public static final String VAR_NEW_STATUS = "newStatus";
public static final String VAR_NEW_STATUS = "newThingStatus";

/**
* conveninence API to build and initialize JvmTypes and their members.
Expand Down

0 comments on commit e94de3f

Please sign in to comment.