📄 basicdispatcherinfo.java
字号:
/**
* $Revision: 32923 $
* $Date: 2006-08-04 14:53:43 -0700 (Fri, 04 Aug 2006) $
*
* Copyright (C) 2004-2006 Jive Software. All rights reserved.
*
* This software is published under the terms of the GNU Public License (GPL),
* a copy of which is included in this distribution, or a commercial license
* agreement with Jive.
*/
package org.jivesoftware.xmpp.workgroup.dispatcher;
import org.jivesoftware.xmpp.workgroup.UnauthorizedException;
import org.jivesoftware.xmpp.workgroup.Workgroup;
/**
* <p>A basic, 'pure data structure' implementation of the dispatcher info interface.
*
* @author Derek DeMoro
*/
public class BasicDispatcherInfo implements DispatcherInfo {
private long id;
private String name;
private String description;
private Workgroup workgroup;
private long offerTimeout = -1;
private long requestTimeout = -1;
public BasicDispatcherInfo(
Workgroup workgroup,
long id,
String name,
String description,
long offerTimeout,
long requestTimeout) {
this.workgroup = workgroup;
this.id = id;
this.name = name;
this.description = description;
this.offerTimeout = offerTimeout;
this.requestTimeout = requestTimeout;
}
public long getId() {
return id;
}
public String getName() {
return name;
}
public void setName(String name) throws UnauthorizedException {
this.name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) throws UnauthorizedException {
this.description = description;
}
public void setRequestTimeout(long timeout) {
requestTimeout = timeout;
}
public long getRequestTimeout() {
if (requestTimeout == -1) {
return workgroup.getRequestTimeout();
}
return requestTimeout;
}
public void setOfferTimeout(long timeout) {
offerTimeout = timeout;
}
public long getOfferTimeout() {
if (offerTimeout == -1) {
return workgroup.getOfferTimeout();
}
return offerTimeout;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -