Skip navigation links

Oracle Communications Converged Application Server Java API Reference
5.1

E36938-01


com.oracle.sft.api.conferenceinfo
Interface ConferenceState


public interface ConferenceState

Represents the conference-state element that defined in RFC4575.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="conference_state_type">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="user_count" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
         <element name="active" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
         <element name="locked" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
         <any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
       <anyAttribute processContents='lax' namespace='##other'/>
     </restriction>
   </complexContent>
 </complexType>
 

Method Summary
 long getUserCount()
          Gets the value of the userCount element.
 boolean isActive()
          Gets the value of the active element.
 boolean isLocked()
          Gets the value of the locked element.
 void setActive(boolean value)
          Sets the value of the active element.
 void setLocked(boolean value)
          Sets the value of the locked element.
 void setUserCount(long value)
          Sets the value of the userCount element.

 

Method Detail

getUserCount

long getUserCount()
Gets the value of the userCount element.
Returns:
the user count

setUserCount

void setUserCount(long value)
Sets the value of the userCount element.
Parameters:
value - the user count

isActive

boolean isActive()
Gets the value of the active element.
Returns:
true or false.

setActive

void setActive(boolean value)
Sets the value of the active element.
Parameters:
value - true or false.

isLocked

boolean isLocked()
Gets the value of the locked element.
Returns:
true or false.

setLocked

void setLocked(boolean value)
Sets the value of the locked element.
Parameters:
value - true or false.

Skip navigation links

Oracle Communications Converged Application Server Java API Reference
5.1

E36938-01


Copyright © 2012 Oracle Corporation. All Rights Reserved.