com.idilia.services.kb.SenseMenuResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of idilia-java-sdk Show documentation
Show all versions of idilia-java-sdk Show documentation
Idilia Java SDK provides Java APIs for building software using Idilia linguistic services (Language graph, word sense disambiguation, paraphrasing, matching).
The newest version!
package com.idilia.services.kb;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.idilia.services.base.ResponseBase;
/**
* Response class from the KB Server API for a SenseMenuRequest
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
public class SenseMenuResponse extends ResponseBase {
public String menu;
/**
* Return the HTML that defines the menu. This HTML is expected by plugin jquery_sense_menu.js.
* @return HTML string for the menu
*/
public final String getMenu() {
return menu;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy