/*
* 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.impl.gui.main.chat.conference;
import net.java.sip.communicator.impl.gui.*;
import net.java.sip.communicator.impl.gui.main.chat.*;
import net.java.sip.communicator.service.protocol.*;
/**
* The <tt>AdHocConferenceChatContact</tt> represents a <tt>ChatContact</tt> in
* an ad-hoc conference chat.
*
* @author Valentin Martinet
* @author Lubomir Marinov
*/
public class AdHocConferenceChatContact
extends ChatContact<Contact>
{
/**
* Creates an instance of <tt>AdHocConferenceChatContact</tt> by passing to
* it the <tt>Contact</tt> for which it is created.
*
* @param participant the <tt>Contact</tt> for which this
* <tt>AdHocConferenceChatContact</tt> is created.
*/
public AdHocConferenceChatContact(Contact participant)
{
super(participant);
}
@Override
protected byte[] getAvatarBytes()
{
return descriptor.getImage();
}
/**
* Returns the contact name.
*
* @return the contact name
*/
@Override
public String getName()
{
String name = descriptor.getDisplayName();
if (name == null || name.length() < 1)
name = GuiActivator.getResources().getI18NString(
"service.gui.UNKNOWN");
return name;
}
/*
* Implements ChatContact#getUID(). Delegates to
* Contact#getAddress() because it's supposed to be unique.
*/
@Override
public String getUID()
{
return descriptor.getAddress();
}
}