blob: c35242d0080f9c24c3861180ac7ba5e287b00699 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.vysper.xmpp.modules.extension.xep0045_muc.model;
import org.apache.vysper.xmpp.addressing.Entity;
/**
* An occupant (user) in a room
*
* @author The Apache MINA Project (dev@mina.apache.org)
*/
public class Occupant {
private Affiliation affiliation;
private Role role;
private Entity jid;
private String name;
public Occupant(Entity jid, String name, Affiliation affiliation, Role role) {
if (jid == null)
throw new IllegalArgumentException("JID can not be null");
if (name == null)
throw new IllegalArgumentException("Name can not be null");
if (affiliation == null)
throw new IllegalArgumentException("Affiliation can not be null");
if (role == null)
throw new IllegalArgumentException("Role can not be null");
this.jid = jid;
this.name = name;
this.affiliation = affiliation;
this.role = role;
}
public Affiliation getAffiliation() {
return affiliation;
}
public void setAffiliation(Affiliation affiliation) {
this.affiliation = affiliation;
}
public Role getRole() {
return role;
}
public void setRole(Role role) {
this.role = role;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Entity getJid() {
return jid;
}
public boolean hasVoice() {
return role == Role.Moderator || role == Role.Participant;
}
@Override
public String toString() {
return jid.getFullQualifiedName();
}
public boolean isModerator() {
return role == Role.Moderator;
}
}