Skip to content

Commit

Permalink
MID-2058, in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed Oct 14, 2014
1 parent 957bf85 commit 1869061
Showing 1 changed file with 6 additions and 0 deletions.
Expand Up @@ -36,6 +36,7 @@
import com.evolveum.midpoint.util.logging.TraceManager;
import com.evolveum.midpoint.xml.ns._public.common.common_3.ObjectType;
import com.evolveum.midpoint.xml.ns._public.common.common_3.ResourceType;
import com.evolveum.midpoint.xml.ns._public.common.common_3.ShadowAssociationType;
import com.evolveum.midpoint.xml.ns._public.common.common_3.ShadowType;

import org.apache.commons.lang.Validate;
Expand Down Expand Up @@ -175,6 +176,11 @@ public String formatAccountAttributes(ShadowType shadowType, List<ItemPath> hidd
if (shadowType.getAttributes() != null) {
formatContainerValue(retval, "", shadowType.getAttributes().asPrismContainerValue(), false, hiddenAttributes, showOperationalAttributes);
}
if (shadowType.getAssociation() != null) {
for (ShadowAssociationType shadowAssociationType : shadowType.getAssociation()) {
formatContainerValue(retval, "", shadowAssociationType.asPrismContainerValue(), false, hiddenAttributes, showOperationalAttributes);
}
}
if (shadowType.getCredentials() != null) {
formatContainerValue(retval, "", shadowType.getCredentials().asPrismContainerValue(), false, hiddenAttributes, showOperationalAttributes);
}
Expand Down

0 comments on commit 1869061

Please sign in to comment.