blob: 9e4a3768b9c868730834d56b914ae5604b33fc3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
/*
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
*
* Copyright @ 2015 Atlassian Pty Ltd
*
* 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 net.java.sip.communicator.service.protocol;
/**
* The Instant Message Transform operation set allows, when \
* supported to insert message transform layers that could change incoming
* messages before they are delivered to the user and outgoing ones before
* they reach the protocol stack and get sent. One use case of this operation
* set is support of upper layer encryption mechanisms like OTR. Other cases may
* include hyperlink presentation, support for wiki words etc.
* <p/>
* Important Notice: As of May 5 2009, this operation set is still a work in
* progress and may change significantly in the following months. Any work based
* on this interface is therefore likely to require frequent updates to keep
* compatibility.
*
* @author Emil Ivov
*
*/
public interface OperationSetInstantMessageTransform
extends OperationSet
{
/**
* Adds a transformation layer to this protocol provider using a default
* priority value.
*
* @param transformLayer the <tt>TransformLayer</tt> that we'd like to add
* to our protocol provider.
*/
public void addTransformLayer(TransformLayer transformLayer);
/**
* Adds <tt>transformLayer</tt> to the layers currrently used for message
* transformation in this provider and assigns the specified
* <tt>priotity</tt> to it.
*
* @param priority the priority/order index that we'd like to insert
* <tt>transportLayer</tt> at.
* @param transformLayer the layer we are registering
*/
public void addTransformLayer(int priority, TransformLayer transformLayer);
/**
* Removes <tt>transformLayer</tt> from the list of currently registered
* transform layers so that it won't be notified for further message events.
*
* @param transformLayer the layer we are trying to remove.
*/
public void removeTransformLayer(TransformLayer transformLayer);
/**
* Determines whether <tt>layer</tt> is currently registered with this
* provider.
*
* @param layer the layer for which we'd like to know whether it is
* currently registered with this provider.
*
* @return <tt>true</tt> if <tt>layer</tt> is currently registered with this
* provider and <tt>false</tt> otherwise.
*/
public boolean containsLayer(TransformLayer layer);
}
|