
org.asteriskjava.manager.event.ContactStatusEvent Maven / Gradle / Ivy
/**
*
* Copyright (c) 2018, 阿信sxq(https://my.oschina.net/songxinqiang).
*
* 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.
*
*/
/*
* 创建时间:2018-12-06_09:14:30(+0800)
* 作者:阿信sxq(https://my.oschina.net/songxinqiang)
*
* 众里寻她千百度, 蓦然回首, 那人却在灯火阑珊处.
*
*/
package org.asteriskjava.manager.event;
/**
* 联系人状态改变
*
* @author 阿信sxq
*
*/
public class ContactStatusEvent extends ManagerEvent {
private static final long serialVersionUID = 4424820677516664896L;
private String aor;
private String uri;
private String contactStatus;
private String roundtripUsec;
private String endpointName;
public ContactStatusEvent(Object source) {
super(source);
}
public String getAor() {
return aor;
}
public String getUri() {
return uri;
}
public String getContactStatus() {
return contactStatus;
}
public String getRoundtripUsec() {
return roundtripUsec;
}
public String getEndpointName() {
return endpointName;
}
public void setAor(String aor) {
this.aor = aor;
}
public void setUri(String uri) {
this.uri = uri;
}
public void setContactStatus(String contactStatus) {
this.contactStatus = contactStatus;
}
public void setRoundtripUsec(String roundtripUsec) {
this.roundtripUsec = roundtripUsec;
}
public void setEndpointName(String endpointName) {
this.endpointName = endpointName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy