@@ -136,6 +136,8 @@ public ComplexState compute(SubState subState) {
136136
137137 private boolean ownerHasAccountService ;
138138
139+ private boolean browsersMatched ;
140+
139141 public APIAdminDevice () {
140142 }
141143
@@ -155,7 +157,7 @@ public APIAdminDevice(
155157 String clusterIpAddress , String clusterRegion , String clusterLocation , LocalDateTime lastOnlineTime ,
156158 Long accountId , String accountName , LocalDateTime dedicationEndTime , String comment , String location ,
157159 Long testTimeLimit , Boolean locked , APIDevice .OsType osType , APIDevice .Platform platform ,
158- Boolean forceRestore ) {
160+ Boolean forceRestore , boolean browsersMatched ) {
159161 super (id );
160162 this .name = name ;
161163 this .manufacturer = manufacturer ;
@@ -185,6 +187,7 @@ public APIAdminDevice(
185187 this .osType = osType ;
186188 this .platform = platform ;
187189 this .forceRestore = forceRestore ;
190+ this .browsersMatched = browsersMatched ;
188191 }
189192
190193 public String getName () {
@@ -408,6 +411,14 @@ public void setOwnerHasAccountService(boolean ownerHasAccountService) {
408411 this .ownerHasAccountService = ownerHasAccountService ;
409412 }
410413
414+ public boolean isBrowsersMatched () {
415+ return browsersMatched ;
416+ }
417+
418+ public void setBrowsersMatched (boolean browsersMatched ) {
419+ this .browsersMatched = browsersMatched ;
420+ }
421+
411422 @ Override
412423 @ JsonIgnore
413424 protected <T extends APIEntity > void clone (T from ) {
@@ -440,5 +451,6 @@ protected <T extends APIEntity> void clone(T from) {
440451 this .platform = adminDevice .platform ;
441452 this .forceRestore = adminDevice .forceRestore ;
442453 this .ownerHasAccountService = adminDevice .ownerHasAccountService ;
454+ this .browsersMatched = adminDevice .browsersMatched ;
443455 }
444456}
0 commit comments