Overview

Summary

ContactDonateImprint


Appendix E-6: CREATOR TOOL USAGE (UI prompt)


CreatorToolUsageTrackModuleSpotify

Properties (5)

PropertyTypeEntityReferenceModule
(1) ArtistLONGCreatorToolUsageArtistTrackModule
(2) CreatorToolLONGCreatorToolUsageCreatorToolPlaylistModule
(3) PodcastLONGCreatorToolUsagePodcastCompanyEntityModule
(4) StartedAtDATECreatorToolUsage
(5) UserAccountLONGCreatorToolUsageUserAccountUserAccountModule


Module Interfaces (9)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /creatortoolusage/artist/{id}findAllCreatorToolUsageOfArtist(id)TrackModuleGETArtist CreatorToolUsage
(2) /creatortoolusage/{id}deleteCreatorToolUsageById(id)TrackModuleDELETECreatorToolUsage
(3) /creatortoolusage/useraccount/{id}findAllCreatorToolUsageOfUserAccount(id)TrackModuleGETUserAccount CreatorToolUsage
(4) /creatortoolusagefindAllCreatorToolUsage()TrackModuleGETCreatorToolUsage
(5) /creatortoolusage/{id}updateCreatorToolUsageById(creatortoolusage)TrackModulePUTCreatorToolUsage
(6) /creatortoolusage/{id}findCreatorToolUsageById(id)TrackModuleGETCreatorToolUsage
(7) /creatortoolusage/podcast/{id}findAllCreatorToolUsageOfPodcast(id)TrackModuleGETPodcast CreatorToolUsage
(8) /creatortoolusage/creatortool/{id}findAllCreatorToolUsageOfCreatorTool(id)TrackModuleGETCreatorTool CreatorToolUsage
(9) /creatortoolusageinsertCreatorToolUsage(creatortoolusage)TrackModulePOSTCreatorToolUsage





Example:

final CreatorToolUsage creatortoolusage = (CreatorToolUsage) invokeModule(TRACK_MODULE + "/creatortoolusage/" + id, CreatorToolUsage.class);
if (creatortoolusage != null) {
    final Podcast podcast1 = (Podcast) invokeModule(COMPANY_ENTITY_MODULE + "/podcast/" + creatortoolusage.getPodcast().getId(), Podcast.class);
    if (podcast1 != null) {
        final Country country2 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + podcast1.getCountry().getId(), Country.class);
        if (country2 != null) {
        }
    }
    final Artist artist3 = (Artist) invokeModule(TRACK_MODULE + "/artist/" + creatortoolusage.getArtist().getId(), Artist.class);
    if (artist3 != null) {
        final Country country4 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + artist3.getCountry().getId(), Country.class);
        if (country4 != null) {
        }
    }
    final UserAccount useraccount5 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + creatortoolusage.getUserAccount().getId(), UserAccount.class);
    if (useraccount5 != null) {
        final Region region6 = (Region) invokeModule(USER_ACCOUNT_MODULE + "/region/" + useraccount5.getRegion().getId(), Region.class);
        if (region6 != null) {
        }
        final Country country7 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + useraccount5.getCountry().getId(), Country.class);
        if (country7 != null) {
        }
    }
    final CreatorTool creatortool8 = (CreatorTool) invokeModule(PLAYLIST_MODULE + "/creatortool/" + creatortoolusage.getCreatorTool().getId(), CreatorTool.class);
    if (creatortool8 != null) {
    }
}
return creatortoolusage;


Overview

Summary

ContactDonateImprint