Пример #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 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();
                }
Пример #3
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);
                }
Пример #4
0
                public CreateCommandEvent.Body.CreateEventRec setCreateEventRec(CreateEventRec value)
                {
                    m_RequestID = value.m_RequestID;
                    m_MaximumAllowedDuration = value.m_MaximumAllowedDuration;
                    m_CommandMessage = value.getCommandMessage();

                    return this;
                }
Пример #5
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;
                }
Пример #6
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();
                }