- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for buildGoUrl (0.09 seconds)
-
src/test/java/org/codelibs/fess/chat/ChatClientTest.java
@Test public void test_escapeHtml_scriptTag() { assertEquals("<script>alert('xss')</script>", chatClient.testEscapeHtml("<script>alert('xss')</script>")); } // ========== buildGoUrl tests ========== @Test public void test_buildGoUrl_basic() { final String url = chatClient.testBuildGoUrl("", "doc123", "query456", 1710000000L, 0);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 40.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/chat/ChatClient.java
* @param requestedTime the requested time from the search * @param order the order index of the document * @return the go URL, or null if docId or queryId is null */ protected String buildGoUrl(final String contextPath, final String docId, final String queryId, final long requestedTime, final int order) { if (docId == null || queryId == null) { return null; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 56.6K bytes - Click Count (0)