blob: 58f0f6b1b88298df3a166f345f854c45dc44c6db [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
2 * Copyright 2014 Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.net.device;
Yuta HIGUCHI68b34942014-10-02 23:23:21 -070017
Brian O'Connorabafb502014-12-02 22:26:20 -080018import org.onosproject.mastership.MastershipTerm;
19import org.onosproject.net.DeviceId;
Yuta HIGUCHI68b34942014-10-02 23:23:21 -070020
Yuta HIGUCHI68b34942014-10-02 23:23:21 -070021/**
22* Interface for feeding term information to a logical clock service
23* that vends per device timestamps.
24*/
Yuta HIGUCHI093e83e2014-10-10 22:26:11 -070025public interface DeviceClockProviderService {
Yuta HIGUCHI68b34942014-10-02 23:23:21 -070026
27 /**
Yuta HIGUCHI13c0b872014-10-30 18:09:22 -070028 * Checks if this service can issue Timestamp for specified device.
29 *
30 * @param deviceId device identifier.
31 * @return true if timestamp can be issued for specified device
32 */
33 public boolean isTimestampAvailable(DeviceId deviceId);
34
35 /**
Yuta HIGUCHI68b34942014-10-02 23:23:21 -070036 * Updates the mastership term for the specified deviceId.
Yuta HIGUCHI24b2e2a2014-10-07 15:53:57 -070037 *
Yuta HIGUCHI68b34942014-10-02 23:23:21 -070038 * @param deviceId device identifier.
39 * @param term mastership term.
40 */
41 public void setMastershipTerm(DeviceId deviceId, MastershipTerm term);
42}