/* ** GENEREATED FILE - DO NOT MODIFY ** */
package com.wilutions.mslib.uccollaborationlib;
import com.wilutions.com.*;
/**
* ConferenceInfo.
* ConferenceInfo Class
*/
@CoClass(guid="{2AE6DB87-2DFD-427D-B8E3-B4D738E2684E}")
public class ConferenceInfo extends Dispatch implements IConferenceInfo {
static boolean __typelib__loaded = __TypeLib.load();
@DeclDISPID(1610743808) public String getId() throws ComException {
final Object obj = this._dispatchCall(1610743808,"Id", DISPATCH_PROPERTYGET,null);
if (obj == null) return null;
return (String)obj;
}
@DeclDISPID(1610743809) public Boolean getAlreadyScheduled() throws ComException {
final Object obj = this._dispatchCall(1610743809,"AlreadyScheduled", DISPATCH_PROPERTYGET,null);
if (obj == null) return null;
return (Boolean)obj;
}
@DeclDISPID(1610743810) public String getUri() throws ComException {
final Object obj = this._dispatchCall(1610743810,"Uri", DISPATCH_PROPERTYGET,null);
if (obj == null) return null;
return (String)obj;
}
@DeclDISPID(1610743811) public ConferenceAdmissionType getAdmissionType() throws ComException {
final Object obj = this._dispatchCall(1610743811,"AdmissionType", DISPATCH_PROPERTYGET,null);
if (obj == null) return null;
return ConferenceAdmissionType.valueOf((Integer)obj);
}
@DeclDISPID(1610743811) public void setAdmissionType(final ConferenceAdmissionType value) throws ComException {
assert(value != null);
this._dispatchCall(1610743811,"AdmissionType", DISPATCH_PROPERTYPUT,value.value);
}
@DeclDISPID(1610743813) public String getAdmissionKey() throws ComException {
final Object obj = this._dispatchCall(1610743813,"AdmissionKey", DISPATCH_PROPERTYGET,null);
if (obj == null) return null;
return (String)obj;
}
@DeclDISPID(1610743813) public void setAdmissionKey(final String value) throws ComException {
assert(value != null);
this._dispatchCall(1610743813,"AdmissionKey", DISPATCH_PROPERTYPUT,value);
}
@DeclDISPID(1610743815) public IConferenceInfoPropertyDictionary getConferenceInfoProperties() throws ComException {
final Object obj = this._dispatchCall(1610743815,"ConferenceInfoProperties", DISPATCH_PROPERTYGET,null);
if (obj == null) return null;
return Dispatch.as(obj, com.wilutions.mslib.uccollaborationlib.impl.IConferenceInfoPropertyDictionaryImpl.class);
}
public ConferenceInfo() throws ComException {
super("{2AE6DB87-2DFD-427D-B8E3-B4D738E2684E}", "{B3C5872E-591C-4A74-9F84-B00EF970A838}");
}
protected ConferenceInfo(long ndisp) {
super(ndisp);
}
public String toString() {
return "[ConferenceInfo" + super.toString() + "]";
}
}