readFinancialSummaryACL

Purpose

This operation reads a financial summary access control list (ACL).

Related Information

Operation: readFinancialSummary

Input

This operation requires the following input:

Return

AccessListInfo

Java Examples

See webservice_toolkit: java\client\src\examples\fm\FinancialSummaryClient.java

readACL()

ReadFinancialSummaryACLDocument requestDoc =
ReadFinancialSummaryACLDocument.Factory.newInstance();
ReadFinancialSummaryACL root =
requestDoc.addNewReadFinancialSummaryACL();
ParentInfo parent =
populateParentInfo(root.addNewFinancialSummaryParent(),
parentType, parentId);
FinanceServiceStub stub = new FinanceServiceStub(context,
serviceURL);
ReadFinancialSummaryACLResponseDocument responseDoc =
stub.readFinancialSummaryACL(requestDoc);
ReadFinancialSummaryACLResponse response =
responseDoc.getReadFinancialSummaryACLResponse();
return response.getAccessList();