From 377810cdd2414598881f83e57839f8a0388d691f Mon Sep 17 00:00:00 2001 From: arshardh Date: Tue, 31 Oct 2023 13:54:58 +0530 Subject: [PATCH] Refactor code --- .../jms/JMSConnectionEventListener.java | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/components/apimgt/org.wso2.carbon.apimgt.common.jms/src/main/java/org/wso2/carbon/apimgt/common/jms/JMSConnectionEventListener.java b/components/apimgt/org.wso2.carbon.apimgt.common.jms/src/main/java/org/wso2/carbon/apimgt/common/jms/JMSConnectionEventListener.java index bd3f53a7fa29..e14643948b41 100644 --- a/components/apimgt/org.wso2.carbon.apimgt.common.jms/src/main/java/org/wso2/carbon/apimgt/common/jms/JMSConnectionEventListener.java +++ b/components/apimgt/org.wso2.carbon.apimgt.common.jms/src/main/java/org/wso2/carbon/apimgt/common/jms/JMSConnectionEventListener.java @@ -1,8 +1,32 @@ +/* + * Copyright (c) 2023, WSO2 LLC. (http://www.wso2.org) All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.wso2.carbon.apimgt.common.jms; +/** + * This interface is used to listen to JMS connection events. + */ public interface JMSConnectionEventListener { + /** + * This method will be called when the JMS connection is re-established after a disconnection. + */ void onReconnect(); + /** + * This method will be called when the JMS connection is disconnected. + */ void onDisconnect(); }