Skip to content

Commit

Permalink
adminGuiConfiguration attribute is not added to container wrapper (MI…
Browse files Browse the repository at this point in the history
…D-3305)
  • Loading branch information
KaterynaHonchar committed Jul 20, 2016
1 parent 8208c0a commit 2a431e3
Showing 1 changed file with 5 additions and 0 deletions.
Expand Up @@ -295,6 +295,11 @@ private List<ItemWrapper> createProperties(ContainerWrapper cWrapper, OperationR

Collection<ItemDefinition> propertyDefinitions = definition.getDefinitions();
for (ItemDefinition itemDef : propertyDefinitions) {
//TODO temporary decision to hide adminGuiConfiguration attribute (MID-3305)
if (itemDef != null && itemDef.getName() != null && itemDef.getName().getLocalPart() != null &&
itemDef.getName().getLocalPart().equals("adminGuiConfiguration")){
continue;
}
if (itemDef instanceof PrismPropertyDefinition) {

PrismPropertyDefinition def = (PrismPropertyDefinition) itemDef;
Expand Down

0 comments on commit 2a431e3

Please sign in to comment.