Skip to content

Commit

Permalink
password history impelmentation - saving old passwords..
Browse files Browse the repository at this point in the history
  • Loading branch information
katkav committed Jul 12, 2016
1 parent 19155c6 commit ab69689
Show file tree
Hide file tree
Showing 3 changed files with 384 additions and 203 deletions.
Expand Up @@ -1582,4 +1582,17 @@ public static <T extends Containerable> List<PrismContainerValue<T>> toPcvList(L
}
return rv;
}

public static <T extends Containerable> List<T> fromPcvList(List<PrismContainerValue<T>> values) {
if (values == null) {
return null;
}
List<T> realValues = new ArrayList<>(values.size());
for (PrismContainerValue<T> value : values) {
realValues.add(value.asContainerable());
}

return realValues;

}
}

0 comments on commit ab69689

Please sign in to comment.