Cosminexus 機能解説
ユーザ属性を取得するには,<ua:attributeEntries>タグを使用して取得したい属性の一覧を指定する必要があります。次に,ユーザ属性の一覧を指定する場合の実装例を示します。
<%@ taglib uri="http://cosminexus.com/admin/auth/uatags" prefix="ua" %> <ua:attributeEntries id="ae"> <ua:attributeEntry attrName="cn" alias="full name" /> ... </ua:attributeEntries> <ua:login id="lc" entry="Portal" attrEntName="ae" /> ... Full Name: <ua:getAttribute name="lc" attrName="full name" /> ... |
ユーザ属性の一覧を指定したあとに,<ua:getAttribute>タグを使用して,ユーザ属性を取得します。
<%@ taglib uri="http://cosminexus.com/admin/auth/uatags" prefix="ua" %> <ua:login id="lc" entry="Portal" attrFile="MyAttrs.csv" /> ... <ua:getAttribute name="lc" attrName="full name" id="fullname" /> Full Name: <%= fullname %> ... |
All Rights Reserved. Copyright (C) 2006, 2007, Hitachi, Ltd.