登录用户的头像显示在AEM Forms工作区的右上角。 此外,组织层次结构中直接报表的变量会显示在“管理器视图”中。 您可以配置AEM Forms工作区,从数据库中选取用户图像,如LDAP服务器。
用户图像的支持宽高比为1:1。
使用下一步中所述的详细信息创建DSC。 有关更多信息,请参阅 使用AEM Forms编程 的双曲余切值。
在DSC中,定义一个新的SPI,该SPI公开getCurrentUserImageUrl和getUserImageUrl方法,以获取AEM Forms用户的图像URL。 以下是Java™代码片段示例:
public class DemoUserImageURLProviderService {
public String getCurrentUserImageUrl()
{
// return the URL for profile Image of logged in user
}
public String getUserImageUrl(String principalOid)
{
// return the URL for profile Image for user represented by this principal Oid
}
}
创建component.xml文件。 请确保规范id为,如以下代码片段中所示。
以下代码片段是一个示例。 根据您的特定要求对其进行自定义。
<component xmlns="https://adobe.com/idp/dsc/component/document">
<component-id>com.adobe.sample.DemoUsersComponent</component-id>
<version>1.1</version>
<supports-export>false</supports-export>
<descriptor-class>com.adobe.idp.dsc.component.impl.DefaultPOJODescriptorImpl</descriptor-class>
<services>
<service name="DemoUserImageURLProviderService" title="Demo User ImageURL provider service" orchestrateable="false">
<auto-deploy service-id="DemoUserImageURLProviderService" category-id="Demo Users Component DSC" major-version="1" minor-version="0" />
<description>Service for resolving user image url.</description>
<specifications>
<specification spec-id="com.adobe.idp.taskmanager.dsc.enterprise.UserImageUrlProvider"/>
</specifications>
<specification-version>1.0</specification-version>
<implementation-class>com.adobe.sample.demousers.DemoUserImageURLProviderService</implementation-class>
<request-processing-strategy>single_instance</request-processing-strategy>
<supported-connectors>default</supported-connectors>
<operation-config>
<operation-name>*</operation-name>
<transaction-type>Container</transaction-type>
<transaction-propagation>supports</transaction-propagation>
<!--transaction-timeout>3000</transaction-timeout-->
</operation-config>
<operations>
<operation anonymous-access="false" name="getCurrentUserImageUrl" method="getCurrentUserImageUrl">
<output-parameter name="result" type="java.lang.String"/>
</operation>
<operation anonymous-access="false" name="getUserImageUrl"
method="getUserImageUrl">
<input-parameter name="principalOid" type="java.lang.String"/>
<output-parameter name="result" type="java.lang.String"/>
</operation>
</operations>
</service>
</services>
</component>
通过Workbench部署DSC。 重新启动 ProcessManagementClientSessionService
服务。
您可能需要刷新浏览器或再次注销/登录用户。