Overview

Summary

ContactDonateImprint


Appendix E-25: BREACH DATA EXPOSURE (UI prompt)


BreachDataExposureSubscriptionPlanModuleDiscord

Properties (4)

PropertyTypeEntityReferenceModule
(1) BreachDataTypeLONGBreachDataExposureBreachDataTypeSubscriptionPlanModule
(2) DataBreachLONGBreachDataExposureDataBreachSupportVendorModule
(3) EstimatedCountLONGBreachDataExposure
(4) IsConfirmedBOOLBreachDataExposure


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /breachdataexposureinsertBreachDataExposure(breachdataexposure)SubscriptionPlanModulePOSTBreachDataExposure
(2) /breachdataexposure/{id}findBreachDataExposureById(id)SubscriptionPlanModuleGETBreachDataExposure
(3) /breachdataexposurefindAllBreachDataExposure()SubscriptionPlanModuleGETBreachDataExposure
(4) /breachdataexposure/{id}updateBreachDataExposureById(breachdataexposure)SubscriptionPlanModulePUTBreachDataExposure
(5) /breachdataexposure/{id}deleteBreachDataExposureById(id)SubscriptionPlanModuleDELETEBreachDataExposure
(6) /breachdataexposure/databreach/{id}findAllBreachDataExposureOfDataBreach(id)SubscriptionPlanModuleGETDataBreach BreachDataExposure
(7) /breachdataexposure/breachdatatype/{id}findAllBreachDataExposureOfBreachDataType(id)SubscriptionPlanModuleGETBreachDataType BreachDataExposure





Example:

final BreachDataExposure breachdataexposure = (BreachDataExposure) invokeModule(SUBSCRIPTION_PLAN_MODULE + "/breachdataexposure/" + id, BreachDataExposure.class);
if (breachdataexposure != null) {
    final BreachDataType breachdatatype1 = (BreachDataType) invokeModule(SUBSCRIPTION_PLAN_MODULE + "/breachdatatype/" + breachdataexposure.getBreachDataType().getId(), BreachDataType.class);
    if (breachdatatype1 != null) {
    }
    final DataBreach databreach2 = (DataBreach) invokeModule(SUPPORT_VENDOR_MODULE + "/databreach/" + breachdataexposure.getDataBreach().getId(), DataBreach.class);
    if (databreach2 != null) {
        final SupportVendor thirdpartyvendor3 = (SupportVendor) invokeModule(SUPPORT_VENDOR_MODULE + "/supportvendor/" + databreach2.getThirdPartyVendor().getId(), SupportVendor.class);
        if (thirdpartyvendor3 != null) {
        }
        final Company company4 = (Company) invokeModule(COMPANY_MODULE + "/company/" + databreach2.getCompany().getId(), Company.class);
        if (company4 != null) {
        }
    }
}
return breachdataexposure;


Overview

Summary

ContactDonateImprint