Skip to content

Commit

Permalink
PRV print demo
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-lizner committed Sep 9, 2015
1 parent 5f4b9e8 commit b08f618
Showing 1 changed file with 5 additions and 0 deletions.
Expand Up @@ -15,6 +15,7 @@
*/
package com.evolveum.midpoint.report.impl;

import com.evolveum.midpoint.prism.PrismReferenceValue;
import com.evolveum.midpoint.prism.path.ItemPathSegment;
import com.evolveum.midpoint.prism.path.NameItemPathSegment;
import java.io.File;
Expand Down Expand Up @@ -169,6 +170,10 @@ public static String prettyPrintForReport(QName qname) {
public static String prettyPrintForReport(ProtectedStringType pst) {
return "*****";
}

public static String prettyPrintForReport(PrismReferenceValue prv) {
return prv.toString();
}

public static String prettyPrintForReport(OperationResultType ort) {
StringBuilder sb = new StringBuilder();
Expand Down

0 comments on commit b08f618

Please sign in to comment.