session element
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<session>
<redirect>...</redirect>
<user>...</user>
<menuItems>
<menuItem>
<hidden>...</hidden>
<title>...</title>
<module>...</module>
<parentModule>...</parentModule>
</menuItem>
<menuItem>
<!--...-->
</menuItem>
<!--...more "menuItem" elements...-->
</menuItems>
<privileges>
<privilege>
<name>...</name>
</privilege>
<privilege>
<!--...-->
</privilege>
<!--...more "privilege" elements...-->
</privileges>
<error>...</error>
<secured>...</secured>
<customerName>...</customerName>
<customerWebsite>...</customerWebsite>
<customerContactName>...</customerContactName>
<customerContactEmail>...</customerContactEmail>
<licenseExpiration>...</licenseExpiration>
<licenseExpirationFormatted>...</licenseExpirationFormatted>
<evaluationLicense>...</evaluationLicense>
<perpetualLicense>...</perpetualLicense>
<supportAndMaintenanceExpiration>...</supportAndMaintenanceExpiration>
<supportAndMaintenanceExpirationFormatted>...</supportAndMaintenanceExpirationFormatted>
<timeZone>...</timeZone>
<ldapSecurity>...</ldapSecurity>
<propertiesInWebapp>...</propertiesInWebapp>
<pageSize>...</pageSize>
</session>
Example JSON
{
"redirect" : "...",
"user" : {
},
"menuItems" : [ {
"hidden" : false,
"title" : "...",
"module" : "...",
"parentModule" : "..."
}, ... ],
"privileges" : [ {
"name" : "ADMINISTRATOR"
}, ... ],
"error" : "...",
"secured" : false,
"customerName" : "...",
"customerWebsite" : "...",
"customerContactName" : "...",
"customerContactEmail" : "...",
"licenseExpiration" : "...",
"licenseExpirationFormatted" : "...",
"evaluationLicense" : false,
"perpetualLicense" : false,
"supportAndMaintenanceExpiration" : "...",
"supportAndMaintenanceExpirationFormatted" : "...",
"timeZone" : "...",
"ldapSecurity" : false,
"propertiesInWebapp" : false,
"pageSize" : ...
}