blob: ef15fe5c0d65c4e617399f0c8b72bdad7c162068 [file] [log] [blame]
Jonathan Hart4fd4ebb2015-02-04 17:38:48 -08001/*
2 * Copyright 2015 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 */
16package org.onosproject.store.intent.impl;
17
18import org.onosproject.net.intent.IntentData;
19import org.onosproject.store.Timestamp;
20import org.onosproject.store.impl.ClockService;
21
22/**
Jonathan Hart5ec32ba2015-02-05 13:33:58 -080023 * ClockService that uses IntentData versions as timestamps.
Jonathan Hart4fd4ebb2015-02-04 17:38:48 -080024 */
Jonathan Hart5ec32ba2015-02-05 13:33:58 -080025public class IntentDataClockManager<K> implements ClockService<K, IntentData> {
Jonathan Hart4fd4ebb2015-02-04 17:38:48 -080026 @Override
Jonathan Hart5ec32ba2015-02-05 13:33:58 -080027 public Timestamp getTimestamp(K key, IntentData intentData) {
28 return intentData.version();
Jonathan Hart4fd4ebb2015-02-04 17:38:48 -080029 }
30}