blob: d0709f21e0a8f2874ad0a11f1b1a7712afa10bb9 [file] [log] [blame]
Amit Ghoshc9ac1e52017-07-28 12:31:18 +01001/*
2 * Copyright 2017-present Open Networking Foundation
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 */
16
17package org.opencord.aaa;
18
19import org.onosproject.net.device.DeviceService;
20import org.opencord.sadis.SubscriberAndDeviceInformationService;
21
22//import java.util.Map;
23
24/**
25 * Info required to do customization to packets.
26 */
27public class CustomizationInfo {
28
29 private DeviceService devService;
30
31 private SubscriberAndDeviceInformationService subscriberService;
32
33 public CustomizationInfo(SubscriberAndDeviceInformationService subsService, DeviceService devService) {
34 this.subscriberService = subsService;
35 this.devService = devService;
36 }
37
38 public DeviceService deviceService() {
39 return devService;
40 }
41
42 public SubscriberAndDeviceInformationService subscriberService() {
43 return subscriberService;
44 }
45}