View Javadoc
1   /*
2    *  Licensed to the Apache Software Foundation (ASF) under one
3    *  or more contributor license agreements.  See the NOTICE file
4    *  distributed with this work for additional information
5    *  regarding copyright ownership.  The ASF licenses this file
6    *  to you under the Apache License, Version 2.0 (the
7    *  "License"); you may not use this file except in compliance
8    *  with the License.  You may obtain a copy of the License at
9    *  
10   *    http://www.apache.org/licenses/LICENSE-2.0
11   *  
12   *  Unless required by applicable law or agreed to in writing,
13   *  software distributed under the License is distributed on an
14   *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   *  KIND, either express or implied.  See the License for the
16   *  specific language governing permissions and limitations
17   *  under the License. 
18   *  
19   */
20  
21  package org.apache.directory.server.ntp.service;
22  
23  
24  import org.apache.directory.server.ntp.NtpService;
25  import org.apache.directory.server.ntp.messages.LeapIndicatorType;
26  import org.apache.directory.server.ntp.messages.ModeType;
27  import org.apache.directory.server.ntp.messages.NtpMessage;
28  import org.apache.directory.server.ntp.messages.NtpMessageModifier;
29  import org.apache.directory.server.ntp.messages.NtpTimeStamp;
30  import org.apache.directory.server.ntp.messages.ReferenceIdentifier;
31  import org.apache.directory.server.ntp.messages.StratumType;
32  
33  
34  /**
35   * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
36   */
37  public class NtpServiceImpl implements NtpService
38  {
39      public NtpMessage./../../../org/apache/directory/server/ntp/messages/NtpMessage.html#NtpMessage">NtpMessage getReplyFor( NtpMessage request )
40      {
41          NtpMessageModifierages/NtpMessageModifier.html#NtpMessageModifier">NtpMessageModifier modifier = new NtpMessageModifier();
42  
43          modifier.setLeapIndicator( LeapIndicatorType.NO_WARNING );
44          modifier.setVersionNumber( 4 );
45          modifier.setMode( ModeType.SERVER );
46          modifier.setStratum( StratumType.PRIMARY_REFERENCE );
47          modifier.setPollInterval( ( byte ) 0x04 );
48          modifier.setPrecision( ( byte ) 0xFA );
49          modifier.setRootDelay( 0 );
50          modifier.setRootDispersion( 0 );
51          modifier.setReferenceIdentifier( ReferenceIdentifier.LOCL );
52  
53          NtpTimeStamper/ntp/messages/NtpTimeStamp.html#NtpTimeStamp">NtpTimeStamp now = new NtpTimeStamp();
54  
55          modifier.setReferenceTimestamp( now );
56          modifier.setOriginateTimestamp( request.getTransmitTimestamp() );
57          modifier.setReceiveTimestamp( request.getReceiveTimestamp() );
58          modifier.setTransmitTimestamp( now );
59  
60          return modifier.getNtpMessage();
61      }
62  }