Introduction to ListAccJson
Introduction to ListAccJson
ListAccJson
The ListAccJson
com.ibm.cics.cip.bank.springboot.customerservices.jsonclasses.listaccounts
Fields and Annotations
The ListAccJson
inqAcccz
of type InqAccczJson
. This field is annotated with @JsonProperty("INQACCCZ")
to map the JSON property INQACCCZ
to the inqAcccz
field.
Methods
The class provides getter and setter methods for the inqAcccz
field. Additionally, the toString
ListAccJson
Usage in Listing Accounts
To display the accounts for a particular customer, the user can click on "List accounts belonging to customer". The Liberty UI offers an option to list or search for accounts.
Integration with WebController
WebController
The getInqacccz
returnListAcc
WebController
In the WebController
getInqacccz
model.addAttribute(LARGE_TEXT, "Accounts belonging to customer "
+ responseObj.getInqacccz().getCustomerNumber() + ":");
model.addAttribute("accounts",
responseObj.getInqacccz().getAccountDetails());
}
This is an auto-generated document by Swimm 🌊 and has not yet been verified by a human