Interface ApplicationMenuApi

    • Method Detail

      • createApplicationMenu

        ApplicationMenu createApplicationMenu​(ApplicationMenuCreateRequest applicationMenuCreateRequest)
        New application menu item Create an application menu item
        Parameters:
        applicationMenuCreateRequest - A partial representation of an application menu in JSON (optional)
        Returns:
        ApplicationMenu
      • createApplicationMenuWithHttpInfo

        ApiResponse<ApplicationMenu> createApplicationMenuWithHttpInfo​(ApplicationMenuCreateRequest applicationMenuCreateRequest)
        New application menu item Similar to createApplicationMenu but it also returns the http response headers . Create an application menu item
        Parameters:
        applicationMenuCreateRequest - A partial representation of an application menu in JSON (optional)
        Returns:
        A ApiResponse that wraps the response boyd and the http headers.
      • deleteApplicationMenuById

        void deleteApplicationMenuById​(String id)
        Delete an application menu by ID Delete a single application menu for the given ID
        Parameters:
        id - ID of the application menu to delete (required)
      • deleteApplicationMenuByIdWithHttpInfo

        ApiResponse<Void> deleteApplicationMenuByIdWithHttpInfo​(String id)
        Delete an application menu by ID Similar to deleteApplicationMenuById but it also returns the http response headers . Delete a single application menu for the given ID
        Parameters:
        id - ID of the application menu to delete (required)
      • geApplicationMenuById

        ApplicationMenu geApplicationMenuById​(String id)
        Finds a application menu by ID Returns a single application menu for the given ID
        Parameters:
        id - ID of application menu to return (required)
        Returns:
        ApplicationMenu
      • geApplicationMenuByIdWithHttpInfo

        ApiResponse<ApplicationMenu> geApplicationMenuByIdWithHttpInfo​(String id)
        Finds a application menu by ID Similar to geApplicationMenuById but it also returns the http response headers . Returns a single application menu for the given ID
        Parameters:
        id - ID of application menu to return (required)
        Returns:
        A ApiResponse that wraps the response boyd and the http headers.
      • searchApplicationMenus

        List<ApplicationMenu> searchApplicationMenus​(Integer p,
                                                     Integer c,
                                                     List<String> f,
                                                     String o,
                                                     String s)
        Finds application menus Returns application menus with pagination params and filters - can order on `id`, `displayName`, `applicationId`, `applicationPageId`, `menuIndex`, `parentMenuId` - can search on `displayName` - can filter on `id`, `displayName`, `applicationId`, `applicationPageId`, `menuIndex`, `parentMenuId`
        Parameters:
        p - index of the page to display (required)
        c - maximum number of elements to retrieve (required)
        f - can filter on attributes with the format f={filter\\_name}={filter\\_value} with the name/value pair as url encoded string. (optional)
        o - can order on attributes (optional)
        s - can search on attributes (optional)
        Returns:
        List<ApplicationMenu>
      • searchApplicationMenusWithHttpInfo

        ApiResponse<List<ApplicationMenu>> searchApplicationMenusWithHttpInfo​(Integer p,
                                                                              Integer c,
                                                                              List<String> f,
                                                                              String o,
                                                                              String s)
        Finds application menus Similar to searchApplicationMenus but it also returns the http response headers . Returns application menus with pagination params and filters - can order on `id`, `displayName`, `applicationId`, `applicationPageId`, `menuIndex`, `parentMenuId` - can search on `displayName` - can filter on `id`, `displayName`, `applicationId`, `applicationPageId`, `menuIndex`, `parentMenuId`
        Parameters:
        p - index of the page to display (required)
        c - maximum number of elements to retrieve (required)
        f - can filter on attributes with the format f={filter\\_name}={filter\\_value} with the name/value pair as url encoded string. (optional)
        o - can order on attributes (optional)
        s - can search on attributes (optional)
        Returns:
        A ApiResponse that wraps the response boyd and the http headers.
      • searchApplicationMenus

        List<ApplicationMenu> searchApplicationMenus​(Map<String,​Object> queryParams)
        Finds application menus Returns application menus with pagination params and filters - can order on `id`, `displayName`, `applicationId`, `applicationPageId`, `menuIndex`, `parentMenuId` - can search on `displayName` - can filter on `id`, `displayName`, `applicationId`, `applicationPageId`, `menuIndex`, `parentMenuId` Note, this is equivalent to the other searchApplicationMenus method, but with the query parameters collected into a single Map parameter. This is convenient for services with optional query parameters, especially when used with the ApplicationMenuApi.SearchApplicationMenusQueryParams class that allows for building up this map in a fluent style.
        Parameters:
        queryParams - Map of query parameters as name-value pairs

        The following elements may be specified in the query map:

        • p - index of the page to display (required)
        • c - maximum number of elements to retrieve (required)
        • f - can filter on attributes with the format f={filter\\_name}={filter\\_value} with the name/value pair as url encoded string. (optional)
        • o - can order on attributes (optional)
        • s - can search on attributes (optional)
        Returns:
        List<ApplicationMenu>
      • searchApplicationMenusWithHttpInfo

        ApiResponse<List<ApplicationMenu>> searchApplicationMenusWithHttpInfo​(Map<String,​Object> queryParams)
        Finds application menus Returns application menus with pagination params and filters - can order on `id`, `displayName`, `applicationId`, `applicationPageId`, `menuIndex`, `parentMenuId` - can search on `displayName` - can filter on `id`, `displayName`, `applicationId`, `applicationPageId`, `menuIndex`, `parentMenuId` Note, this is equivalent to the other searchApplicationMenus that receives the query parameters as a map, but this one also exposes the Http response headers
        Parameters:
        queryParams - Map of query parameters as name-value pairs

        The following elements may be specified in the query map:

        • p - index of the page to display (required)
        • c - maximum number of elements to retrieve (required)
        • f - can filter on attributes with the format f={filter\\_name}={filter\\_value} with the name/value pair as url encoded string. (optional)
        • o - can order on attributes (optional)
        • s - can search on attributes (optional)
        Returns:
        List<ApplicationMenu>
      • updateApplicationMenuById

        void updateApplicationMenuById​(String id,
                                       ApplicationMenuUpdateRequest applicationMenuUpdateRequest)
        Update a application menu by ID Update a application menu for the given ID
        Parameters:
        id - ID of the application menu to return (required)
        applicationMenuUpdateRequest - Partial application menu description (required)
      • updateApplicationMenuByIdWithHttpInfo

        ApiResponse<Void> updateApplicationMenuByIdWithHttpInfo​(String id,
                                                                ApplicationMenuUpdateRequest applicationMenuUpdateRequest)
        Update a application menu by ID Similar to updateApplicationMenuById but it also returns the http response headers . Update a application menu for the given ID
        Parameters:
        id - ID of the application menu to return (required)
        applicationMenuUpdateRequest - Partial application menu description (required)