Skip to content

Commit

Permalink
Converted the allowableValues to ints, as they were improperly un-hexed
Browse files Browse the repository at this point in the history
  • Loading branch information
dotasek committed Feb 28, 2018
1 parent 2d958bf commit 4e536b1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ public class AppModel {
public String bundleSymbolicName;
@ApiModelProperty(value="If this App is implemented as an [OSGi bundle](https://osgi.org/javadoc/r4v43/core/org/osgi/framework/Bundle.html), this field contains its `Bundle-Version` header", required=false)
public String bundleVersion;
@ApiModelProperty(value="If this App is implemented as an [OSGi bundle](https://osgi.org/javadoc/r4v43/core/org/osgi/framework/Bundle.html), this field contains its state.", required=false, allowableValues="1,2,4,8,10,20")
@ApiModelProperty(value="If this App is implemented as an [OSGi bundle](https://osgi.org/javadoc/r4v43/core/org/osgi/framework/Bundle.html), this field contains its state.", required=false, allowableValues="1,2,4,8,16,32")
public int bundleState;
}

0 comments on commit 4e536b1

Please sign in to comment.