blob: e8be80191938a2596eaf8272e4bf54f25a6b0936 (
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
|
/*
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
*
* Distributable under LGPL license. See terms of license at gnu.org.
*/
package net.java.sip.communicator.impl.protocol.jabber;
import net.java.sip.communicator.service.protocol.*;
/**
* A simple implementation of the <tt>OperationSetAvatar</tt> interface for the
* jabber protocol.
*
* Actually there isn't any maximum size for the jabber protocol but GoogleTalk
* fix it a 96x96.
*
* @author Damien Roth
*/
public class OperationSetAvatarJabberImpl extends
AbstractOperationSetAvatar<ProtocolProviderServiceJabberImpl>
{
/**
* Creates a new instances of <tt>OperationSetAvatarJabberImpl</tt>.
*
* @param parentProvider a reference to the
* <tt>ProtocolProviderServiceJabberImpl</tt> instance that created us.
* @param accountInfoOpSet a reference to the
* <tt>OperationSetServerStoredAccountInfo</tt>.
*/
public OperationSetAvatarJabberImpl(
ProtocolProviderServiceJabberImpl parentProvider,
OperationSetServerStoredAccountInfo accountInfoOpSet)
{
super(parentProvider, accountInfoOpSet, 96, 96, 0);
}
}
|