Smack/smack-openpgp/src/main/java/org/jivesoftware/smackx/ox/listener/OxMessageListener.java

40 lines
1.6 KiB
Java
Raw Normal View History

2018-05-21 15:42:04 +02:00
/**
*
* Copyright 2018 Paul Schaub.
*
* 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.
*/
2018-05-30 22:06:09 +02:00
package org.jivesoftware.smackx.ox.listener;
2018-05-21 15:42:04 +02:00
2018-05-30 22:06:09 +02:00
import org.jivesoftware.smack.packet.Message;
2018-07-04 16:02:03 +02:00
import org.jivesoftware.smackx.ox.OpenPgpContact;
import org.jivesoftware.smackx.ox.element.OpenPgpElement;
2018-05-30 22:06:09 +02:00
import org.jivesoftware.smackx.ox.element.SigncryptElement;
2018-05-21 15:42:04 +02:00
2018-06-20 11:02:30 +02:00
public interface OxMessageListener {
2018-05-21 20:07:17 +02:00
/**
* This method gets invoked, whenever an OX-IM encrypted message gets received.
*
* @see <a href="https://xmpp.org/extensions/xep-0374.html">
* XEP-0374: OpenPGP for XMPP: Instant Messaging (OX-IM)</a>
*
2018-06-20 11:02:30 +02:00
* @param contact {@link OpenPgpContact} which sent the message.
* @param originalMessage the received message that is carrying the encrypted {@link OpenPgpElement}.
* @param decryptedPayload decrypted {@link SigncryptElement} which is carrying the payload.
*/
2018-06-20 11:02:30 +02:00
void newIncomingOxMessage(OpenPgpContact contact,
2018-06-13 18:39:09 +02:00
Message originalMessage,
2018-06-20 11:02:30 +02:00
SigncryptElement decryptedPayload);
2018-05-21 15:42:04 +02:00
}