Class PolicyContractFieldDescriptor

    • Constructor Detail

      • PolicyContractFieldDescriptor

        public PolicyContractFieldDescriptor​(String name,
                                             String description)
        Creates a new PolicyContractFieldDescriptor.
        Parameters:
        name - the field name
        description - a helpful description of the field
    • Method Detail

      • parseSelectedValueForStorage

        public String parseSelectedValueForStorage​(String selectedValue)
        Description copied from class: FilterableSelectionFieldDescriptor
        Parses the selected value of the filterable drop-down menu for storage.
        Overrides:
        parseSelectedValueForStorage in class FilterableSelectionFieldDescriptor
        Parameters:
        selectedValue - selected value of the filterable drop-down menu, following the format "[search type tab title]-[selected entry ID]"
                                                       NOTE:
                                                       The search type tab title part is only useful when the filterable selection field descriptor implementation
                                                       supports multiple search types, so for implementation that supports only one search type, the tab title may
                                                       be parsed out and discarded.
        
                                                       For example, for the selected value, 'OAuth Clients-sampleOAuthClient', where 'OAuth Clients' is the search
                                                       type tab title and 'sampleOAuthClient' is the unique OAuth client ID that may be used to retrieve an OAuth
                                                       client data object from a data store, a FilterableSelectionFieldDescriptor implementation that only supports
                                                       searches over OAuth clients may have no reason to keep track of the search type, so the tab title
                                                       'OAuth Clients' may be discarded.
                                                   
        Returns:
        parsed string value based on the selectedValue to be used when the selected value is saved
      • getSelectedDisplayName

        public String getSelectedDisplayName​(String valueForStorage)
        Description copied from class: FilterableSelectionFieldDescriptor
        Gets the display string value of a stored value returned by parseSelectedValueForStorage.
             For example, when a unique OAuth client ID is returned by parseSelectedValueForStorage, instead of using the
             client ID as the display string, a FilterableSelectionFieldDescriptor implementation may opt to display the
             corresponding client name of client ID instead, possibly obtained through data store query.
         
        Overrides:
        getSelectedDisplayName in class FilterableSelectionFieldDescriptor
        Parameters:
        valueForStorage - typically an unique ID of a data object, e.g. a connection (system) ID, an adapter ID, or an OAuth client ID etc.
        Returns:
        drop-down box display value for the selected item
      • getFormattedValue

        public String getFormattedValue​(String value)
        Description copied from class: FilterableSelectionFieldDescriptor
        Gets the formatted value, by default returns the same string value returned by getSelectedDisplayName.
        Overrides:
        getFormattedValue in class FilterableSelectionFieldDescriptor
        Parameters:
        value - typically a unique ID of a data object, e.g. a connection ID, an adapter ID, or an OAuth client ID etc.
        Returns:
        returns the display name of the policy contract if one is set, otherwise returns an empty string.