Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Rochat (0.23 sec)

  1. src/main/java/org/codelibs/fess/helper/NotificationHelper.java

            return buf.toString();
        }
    
        protected void sendToGoogleChat(final CardView cardView, final SMailPostingDiscloser discloser) {
            // https://developers.google.com/hangouts/chat/how-tos/webhooks
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final String googleChatWebhookUrls = fessConfig.getGoogleChatWebhookUrls();
            if (StringUtil.isBlank(googleChatWebhookUrls)) {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        default void setGoogleChatWebhookUrls(final String value) {
            setSystemProperty(Constants.GOOGLE_CHAT_WEBHOOK_URLS_PROPERTY, value);
        }
    
        default String getGoogleChatWebhookUrls() {
            return getSystemProperty(Constants.GOOGLE_CHAT_WEBHOOK_URLS_PROPERTY, StringUtil.EMPTY);
        }
    
        default void setNotificationTo(final String value) {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  3. samples/slack/src/main/java/okhttp3/slack/SlackClient.java

        int port = 53203;
        SlackApi slackApi = new SlackApi(clientId, clientSecret, port);
    
        SlackClient client = new SlackClient(slackApi);
        String scopes = "channels:history channels:read channels:write chat:write:bot chat:write:user "
            + "dnd:read dnd:write emoji:read files:read files:write:user groups:history groups:read "
            + "groups:write im:history im:read im:write mpim:history mpim:read mpim:write pins:read "
    Java
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Jan 12 03:31:36 GMT 2019
    - 3.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/Constants.java

        public static final String NOTIFICATION_TO_PROPERTY = "notification.to";
    
        public static final String SLACK_WEBHOOK_URLS_PROPERTY = "slack.webhook.urls";
    
        public static final String GOOGLE_CHAT_WEBHOOK_URLS_PROPERTY = "google.chat.webhook.urls";
    
        public static final String USE_BROWSER_LOCALE_FOR_SEARCH_PROPERTY = "search.use.browser.locale";
    
        public static final String SUGGEST_SEARCH_LOG_PROPERTY = "suggest.searchlog";
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.4K bytes
    - Viewed (0)
Back to top