blob: 739d36f566688083dbb703aed27759799a1130aa [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 */
Thomas Vachuskac97aa612015-06-23 16:00:18 -070016package org.onosproject.store.trivial;
Yuta HIGUCHI68b34942014-10-02 23:23:21 -070017
Yuta HIGUCHI13c0b872014-10-30 18:09:22 -070018import java.util.Set;
19
Yuta HIGUCHI68b34942014-10-02 23:23:21 -070020import org.apache.felix.scr.annotations.Component;
21import org.apache.felix.scr.annotations.Service;
Brian O'Connorabafb502014-12-02 22:26:20 -080022import org.onosproject.mastership.MastershipTerm;
23import org.onosproject.net.DeviceId;
24import org.onosproject.net.device.DeviceClockProviderService;
Yuta HIGUCHI68b34942014-10-02 23:23:21 -070025
Yuta HIGUCHI13c0b872014-10-30 18:09:22 -070026import com.google.common.collect.Sets;
27
Yuta HIGUCHI68b34942014-10-02 23:23:21 -070028/**
Yuta HIGUCHI093e83e2014-10-10 22:26:11 -070029 * Dummy implementation of {@link DeviceClockProviderService}.
Yuta HIGUCHI68b34942014-10-02 23:23:21 -070030 */
31@Component(immediate = true)
32@Service
Yuta HIGUCHI093e83e2014-10-10 22:26:11 -070033public class NoOpClockProviderService implements DeviceClockProviderService {
Yuta HIGUCHI68b34942014-10-02 23:23:21 -070034
Yuta HIGUCHI13c0b872014-10-30 18:09:22 -070035 private Set<DeviceId> registerdBefore = Sets.newConcurrentHashSet();
36
Yuta HIGUCHI68b34942014-10-02 23:23:21 -070037 @Override
38 public void setMastershipTerm(DeviceId deviceId, MastershipTerm term) {
Yuta HIGUCHI13c0b872014-10-30 18:09:22 -070039 registerdBefore.add(deviceId);
40 }
41
42 @Override
43 public boolean isTimestampAvailable(DeviceId deviceId) {
44 return registerdBefore.contains(deviceId);
Yuta HIGUCHI68b34942014-10-02 23:23:21 -070045 }
46}