Пример #1
0
                public CreateCommandEvent.Body.CreateEventRec  setCreateEventRec(CreateEventRec value)
                {
                    m_RequestID = value.m_RequestID;
                    m_MaximumAllowedDuration = value.m_MaximumAllowedDuration;
                    m_CommandMessage         = value.getCommandMessage();

                    return(this);
                }
Пример #2
0
                public CreateEvent.Body.CreateEventRec  setCreateEventRec(CreateEventRec value)
                {
                    m_RequestID             = value.m_RequestID;
                    m_EventType             = value.m_EventType;
                    m_RequestedPeriodicRate = value.m_RequestedPeriodicRate;
                    m_QueryMessage          = value.getQueryMessage();

                    return(this);
                }
Пример #3
0
            public Body(Body value)
            {
                /// Initiliaze the protected variables
                m_CreateEventRec = new CreateEventRec();
                m_CreateEventRec.setParent(this);

                /// Copy the values
                m_CreateEventRec = value.getCreateEventRec();
                m_CreateEventRec.setParent(this);
                /// This code is currently not supported
            }
Пример #4
0
                public CreateEventRec(CreateEventRec value)
                {
                    /// Initiliaze the protected variables
                    m_parent    = null;
                    m_RequestID = 0;
                    m_MaximumAllowedDuration = 0;
                    m_CommandMessage         = new CommandMessage();
                    m_CommandMessage.setParent(this);

                    /// Copy the values
                    m_RequestID = value.m_RequestID;
                    m_MaximumAllowedDuration = value.m_MaximumAllowedDuration;
                    m_CommandMessage         = value.getCommandMessage();
                }
Пример #5
0
                public CreateEventRec(CreateEventRec value)
                {
                    /// Initiliaze the protected variables
                    m_parent                = null;
                    m_RequestID             = 0;
                    m_EventType             = 0;
                    m_RequestedPeriodicRate = 0;
                    m_QueryMessage          = new QueryMessage();
                    m_QueryMessage.setParent(this);

                    /// Copy the values
                    m_RequestID             = value.m_RequestID;
                    m_EventType             = value.m_EventType;
                    m_RequestedPeriodicRate = value.m_RequestedPeriodicRate;
                    m_QueryMessage          = value.getQueryMessage();
                }
Пример #6
0
                public bool isEqual(CreateEventRec value)
                {
                    if (this.getRequestID() != value.getRequestID())
                    {
                        return(false);
                    }
                    if (this.getMaximumAllowedDuration() != value.getMaximumAllowedDuration())
                    {
                        return(false);
                    }

                    if (!this.getCommandMessage().isEqual(value.getCommandMessage()))
                    {
                        return(false);
                    }

                    return(true);
                }
Пример #7
0
                public bool isEqual(CreateEventRec value)
                {
                    if (this.getRequestID() != value.getRequestID())
                    {
                        return(false);
                    }
                    if (this.getEventType() != value.getEventType())
                    {
                        return(false);
                    }
                    if (this.getRequestedPeriodicRate() != value.getRequestedPeriodicRate())
                    {
                        return(false);
                    }

                    if (!this.getQueryMessage().isEqual(value.getQueryMessage()))
                    {
                        return(false);
                    }

                    return(true);
                }
Пример #8
0
                public bool isEqual(CreateEventRec value)
                {
                    if (this.getRequestID() != value.getRequestID())
                    {
                    return false;
                    }
                    if (this.getMaximumAllowedDuration() != value.getMaximumAllowedDuration())
                    {
                    return false;
                    }

                    if (!this.getCommandMessage().isEqual(value.getCommandMessage()))
                    {
                    return false;
                    }

                    return true;
                }
Пример #9
0
 public void setParent(CreateEventRec parent)
 {
     m_parent = parent;
 }
Пример #10
0
                public CreateEvent.Body.CreateEventRec setCreateEventRec(CreateEventRec value)
                {
                    m_RequestID = value.m_RequestID;
                    m_EventType = value.m_EventType;
                    m_RequestedPeriodicRate = value.m_RequestedPeriodicRate;
                    m_QueryMessage = value.getQueryMessage();

                    return this;
                }
Пример #11
0
                public bool isEqual(CreateEventRec value)
                {
                    if (this.getRequestID() != value.getRequestID())
                    {
                    return false;
                    }
                    if (this.getEventType() != value.getEventType())
                    {
                    return false;
                    }
                    if (this.getRequestedPeriodicRate() != value.getRequestedPeriodicRate())
                    {
                    return false;
                    }

                    if (!this.getQueryMessage().isEqual(value.getQueryMessage()))
                    {
                    return false;
                    }

                    return true;
                }
Пример #12
0
 public Body()
 {
     m_CreateEventRec = new CreateEventRec();
     m_CreateEventRec.setParent(this);
 }
Пример #13
0
                public CreateEventRec(CreateEventRec value)
                {
                    /// Initiliaze the protected variables
                    m_parent = null;
                    m_RequestID = 0;
                    m_MaximumAllowedDuration = 0;
                    m_CommandMessage = new CommandMessage();
                    m_CommandMessage.setParent(this);

                    /// Copy the values
                    m_RequestID = value.m_RequestID;
                    m_MaximumAllowedDuration = value.m_MaximumAllowedDuration;
                    m_CommandMessage = value.getCommandMessage();
                }
Пример #14
0
 public void setCreateEventRec(CreateEventRec value)
 {
     m_CreateEventRec = value;
     setParentPresenceVector();
 }
Пример #15
0
            public CreateCommandEvent.Body setBody(Body value)
            {
                m_CreateEventRec = value.getCreateEventRec();
                m_CreateEventRec.setParent(this);
                /// This code is currently not supported

                return this;
            }
Пример #16
0
            public Body(Body value)
            {
                /// Initiliaze the protected variables
                m_CreateEventRec = new CreateEventRec();
                m_CreateEventRec.setParent(this);

                /// Copy the values
                m_CreateEventRec = value.getCreateEventRec();
                m_CreateEventRec.setParent(this);
                /// This code is currently not supported
            }
Пример #17
0
 public Body()
 {
     m_CreateEventRec = new CreateEventRec();
     m_CreateEventRec.setParent(this);
 }
Пример #18
0
 public bool notEquals(CreateEventRec value)
 {
     return(!this.isEqual(value));
 }
Пример #19
0
 public bool notEquals(CreateEventRec value)
 {
     return !this.isEqual(value);
 }
Пример #20
0
 public void setCreateEventRec(CreateEventRec value)
 {
     m_CreateEventRec = value;
     setParentPresenceVector();
 }
Пример #21
0
                public CreateCommandEvent.Body.CreateEventRec setCreateEventRec(CreateEventRec value)
                {
                    m_RequestID = value.m_RequestID;
                    m_MaximumAllowedDuration = value.m_MaximumAllowedDuration;
                    m_CommandMessage = value.getCommandMessage();

                    return this;
                }
Пример #22
0
 public void setParent(CreateEventRec parent)
 {
     m_parent = parent;
 }
Пример #23
0
                public CreateEventRec(CreateEventRec value)
                {
                    /// Initiliaze the protected variables
                    m_parent = null;
                    m_RequestID = 0;
                    m_EventType = 0;
                    m_RequestedPeriodicRate = 0;
                    m_QueryMessage = new QueryMessage();
                    m_QueryMessage.setParent(this);

                    /// Copy the values
                    m_RequestID = value.m_RequestID;
                    m_EventType = value.m_EventType;
                    m_RequestedPeriodicRate = value.m_RequestedPeriodicRate;
                    m_QueryMessage = value.getQueryMessage();
                }