blob: e5b9fbfa07192a9bda1fa0773faa9e325db7e235 (
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
|
/*
* 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.msn;
import net.java.sip.communicator.service.protocol.*;
/**
* A simple implementation of the <tt>OperationSetAvatar</tt> interface for the
* msn protocol.
*
* @author Damian Minkov
*/
public class OperationSetAvatarMsnImpl
extends AbstractOperationSetAvatar<ProtocolProviderServiceMsnImpl>
{
public OperationSetAvatarMsnImpl(
ProtocolProviderServiceMsnImpl parentProvider,
OperationSetServerStoredAccountInfo accountInfoOpSet)
{
super(parentProvider, accountInfoOpSet, 0, 0, 0);
}
}
|