Skip to content

Commit

Permalink
[WFCORE-2943] set required to false for storage runtime attributes in…
Browse files Browse the repository at this point in the history
… elytron loaded-providers.
  • Loading branch information
soul2zimate committed Jun 12, 2017
1 parent 9431101 commit 0220429
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class ProviderAttributeDefinition {

static final ObjectTypeAttributeDefinition LOADED_PROVIDER = new ObjectTypeAttributeDefinition.Builder(ElytronDescriptionConstants.LOADED_PROVIDER, NAME, INFO, VERSION)
.setStorageRuntime()
.setRequired(true)
.setRequired(false)
.build();

/*
Expand All @@ -71,12 +71,12 @@ class ProviderAttributeDefinition {
.build();

private static final ObjectTypeAttributeDefinition FULL_PROVIDER = new ObjectTypeAttributeDefinition.Builder(ElytronDescriptionConstants.PROVIDER, NAME, INFO, VERSION, SERVICES)
.setRequired(true)
.setRequired(false)
.build();

static final ObjectListAttributeDefinition LOADED_PROVIDERS = new ObjectListAttributeDefinition.Builder(ElytronDescriptionConstants.LOADED_PROVIDERS, FULL_PROVIDER)
.setStorageRuntime()
.setRequired(true)
.setRequired(false)
.build();

/*
Expand Down

0 comments on commit 0220429

Please sign in to comment.