Meki Cherkaoui | b0365a7 | 2012-02-18 00:59:57 -0800 | [diff] [blame^] | 1 | // JavaScript Document |
| 2 | |
| 3 | var InterestMessage = function InterestMessage(_Name,_MinSuffixComponents,_MaxSuffixComponents,_PublisherPublicKeyDigest, _Exclude, _ChildSelector,_AnswerOriginKind,_Scope,_InterestLifetime,_Nonce){ |
| 4 | |
| 5 | this.Name = _Name; |
| 6 | this.MinSuffixComponents = _MinSuffixComponents; |
| 7 | this.MaxSuffixComponents = _MaxSuffixComponents; |
| 8 | this.PublisherPublicKeyDigest=_PublisherPublicKeyDigest; |
| 9 | this.Exclude=_Exclude; |
| 10 | this.ChildSelector=_ChildSelector; |
| 11 | this.Scope=_Scope; |
| 12 | this.InterestLifetime=_InterestLifetime; |
| 13 | this.Nonce = _Nonce; |
| 14 | |
| 15 | }; |
| 16 | |
| 17 | exports.InterestMessage = InterestMessage; |