Overview

Summary

ContactDonateImprint


Appendix E-18: FINANCIAL STATEMENT (UI prompt)


FinancialStatementPersonModuleUber

Properties (8)

PropertyTypeEntityReferenceModule
(1) CompanyLONGFinancialStatementCompanyCompanyModule
(2) EmployeesINTFinancialStatement
(3) FiscalYearINTFinancialStatement
(4) NetIncomeDOUBLEFinancialStatement
(5) OperatingIncomeDOUBLEFinancialStatement
(6) RevenueDOUBLEFinancialStatement
(7) TotalAssetsDOUBLEFinancialStatement
(8) TotalEquityDOUBLEFinancialStatement


Module Interfaces (6)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /financialstatementinsertFinancialStatement(financialstatement)PersonModulePOSTFinancialStatement
(2) /financialstatementfindAllFinancialStatement()PersonModuleGETFinancialStatement
(3) /financialstatement/company/{id}findAllFinancialStatementOfCompany(id)PersonModuleGETCompany FinancialStatement
(4) /financialstatement/{id}deleteFinancialStatementById(id)PersonModuleDELETEFinancialStatement
(5) /financialstatement/{id}updateFinancialStatementById(financialstatement)PersonModulePUTFinancialStatement
(6) /financialstatement/{id}findFinancialStatementById(id)PersonModuleGETFinancialStatement





Example:

final FinancialStatement financialstatement = (FinancialStatement) invokeModule(PERSON_MODULE + "/financialstatement/" + id, FinancialStatement.class);
if (financialstatement != null) {
    final Company company1 = (Company) invokeModule(COMPANY_MODULE + "/company/" + financialstatement.getCompany().getId(), Company.class);
    if (company1 != null) {
    }
}
return financialstatement;


Overview

Summary

ContactDonateImprint