Módosítások

Attribute Conversion for eduGAIN

213 bájt hozzáadva, 2008. október 8., 00:21
Runtime
List<AttributeValues> input = ...;
// Call converter and filter in order.// Home BE should call attribute converterfirst, remote BE should call filter first.if (isHomeBE) { List<AttributeValues> output = converter.process(input, remote, local);// call attribute output = filter.process(output, remote, local);} else { List<AttributeValues> output = filter.process(input, remote, local); output = converter.process(output, remote, local);}
// process output here, create new assertion, etc.
565
szerkesztés

Navigációs menü