Overview

Summary

ContactDonateImprint


1. COMPANY MODULE (UI prompt)



Module Entities (5)

EntityAliasModuleGlobal Schema
(1) BalloonFlightBalloonFlightProjectModuleLoons
(2) BalloonTelemetrySampleBalloonTelemetrySampleCompanyModuleLoons
(3) CompanyCompanyCompanyModuleLoons
(4) PatentPatentCompanyModuleLoons
(5) ProjectProjectProjectModuleLoons

Module Interfaces (17)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /patentfindAllPatent()CompanyModuleGETPatent
(2) /patent/{id}updatePatentById(patent)CompanyModulePUTPatent
(3) /companyinsertCompany(company)CompanyModulePOSTCompany
(4) /balloontelemetrysamplefindAllBalloonTelemetrySample()CompanyModuleGETBalloonTelemetrySample
(5) /company/{id}findCompanyById(id)CompanyModuleGETCompany
(6) /patentinsertPatent(patent)CompanyModulePOSTPatent
(7) /balloontelemetrysampleinsertBalloonTelemetrySample(balloontelemetrysample)CompanyModulePOSTBalloonTelemetrySample
(8) /patent/assigneecompany/{id}findAllPatentOfAssigneeCompany(id)CompanyModuleGETCompany Patent
(9) /company/{id}updateCompanyById(company)CompanyModulePUTCompany
(10) /balloontelemetrysample/{id}deleteBalloonTelemetrySampleById(id)CompanyModuleDELETEBalloonTelemetrySample
(11) /companyfindAllCompany()CompanyModuleGETCompany
(12) /balloontelemetrysample/balloonflight/{id}findAllBalloonTelemetrySampleOfBalloonFlight(id)CompanyModuleGETBalloonFlight BalloonTelemetrySample
(13) /balloontelemetrysample/{id}findBalloonTelemetrySampleById(id)CompanyModuleGETBalloonTelemetrySample
(14) /patent/{id}deletePatentById(id)CompanyModuleDELETEPatent
(15) /patent/{id}findPatentById(id)CompanyModuleGETPatent
(16) /company/{id}deleteCompanyById(id)CompanyModuleDELETECompany
(17) /balloontelemetrysample/{id}updateBalloonTelemetrySampleById(balloontelemetrysample)CompanyModulePUTBalloonTelemetrySample






1.1 BALLOON TELEMETRY SAMPLE


BalloonTelemetrySampleCompanyModuleLoons

Properties (8)

PropertyTypeEntityReferenceModule
(1) AltitudeKmSTRINGBalloonTelemetrySample
(2) BalloonFlightINTBalloonTelemetrySampleBalloonFlightProjectModule
(3) BatteryLevelPercentSTRINGBalloonTelemetrySample
(4) LatitudeSTRINGBalloonTelemetrySample
(5) LongitudeSTRINGBalloonTelemetrySample
(6) SampleTimeDATEBalloonTelemetrySample
(7) SignalQualityDbSTRINGBalloonTelemetrySample
(8) TemperatureCSTRINGBalloonTelemetrySample





Example:

final BalloonTelemetrySample balloontelemetrysample = (BalloonTelemetrySample) invokeModule(COMPANY_MODULE + "/balloontelemetrysample/" + id, BalloonTelemetrySample.class);
if (balloontelemetrysample != null) {
    final BalloonFlight balloonflight1 = (BalloonFlight) invokeModule(PROJECT_MODULE + "/balloonflight/" + balloontelemetrysample.getBalloonFlight().getId(), BalloonFlight.class);
    if (balloonflight1 != null) {
        final BalloonModel balloonmodel2 = (BalloonModel) invokeModule(WIND_LAYER_MODULE + "/balloonmodel/" + balloonflight1.getBalloonModel().getId(), BalloonModel.class);
        if (balloonmodel2 != null) {
        }
        final Project project3 = (Project) invokeModule(PROJECT_MODULE + "/project/" + balloonflight1.getProject().getId(), Project.class);
        if (project3 != null) {
            final Company company4 = (Company) invokeModule(COMPANY_MODULE + "/company/" + project3.getCompany().getId(), Company.class);
            if (company4 != null) {
            }
        }
        final LaunchSite launchsite5 = (LaunchSite) invokeModule(LAUNCH_SITE_MODULE + "/launchsite/" + balloonflight1.getLaunchSite().getId(), LaunchSite.class);
        if (launchsite5 != null) {
            final City city6 = (City) invokeModule(REGION_MODULE + "/city/" + launchsite5.getCity().getId(), City.class);
            if (city6 != null) {
                final Region region7 = (Region) invokeModule(REGION_MODULE + "/region/" + city6.getRegion().getId(), Region.class);
                if (region7 != null) {
                    final Country country8 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + region7.getCountry().getId(), Country.class);
                    if (country8 != null) {
                    }
                }
            }
        }
    }
}
return balloontelemetrysample;


1.2 COMPANY


CompanyCompanyModuleLoons

Properties (8)

PropertyTypeEntityReferenceModule
(1) CompanyTypeSTRINGCompany
(2) DefunctDateDATECompany
(3) DescriptionSTRINGCompany
(4) FoundedDateDATECompany
(5) IndustrySTRINGCompany
(6) NameSTRINGCompany
(7) ParentCompanyINTCompany
(8) WebsiteSTRINGCompany





Example:

final Company company = (Company) invokeModule(COMPANY_MODULE + "/company/" + id, Company.class);
if (company != null) {
}
return company;


1.3 PATENT


PatentCompanyModuleLoons

Properties (6)

PropertyTypeEntityReferenceModule
(1) AssigneeCompanyINTPatentCompanyCompanyModule
(2) FilingDateDATEPatent
(3) GrantDateDATEPatent
(4) PatentNumberSTRINGPatent
(5) TitleSTRINGPatent
(6) UrlSTRINGPatent





Example:

final Patent patent = (Patent) invokeModule(COMPANY_MODULE + "/patent/" + id, Patent.class);
if (patent != null) {
    final Company assigneecompany1 = (Company) invokeModule(COMPANY_MODULE + "/company/" + patent.getAssigneeCompany().getId(), Company.class);
    if (assigneecompany1 != null) {
    }
}
return patent;


Overview

Summary

ContactDonateImprint