blob: 5f2b6b7dc049debffad19255d6ab72d4bee08001 [file] [log] [blame]
Steven Burrows57e24e92016-08-04 18:38:24 +01001/*
2 * Copyright 2016-present 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 */
16
17/*
18 ONOS GUI -- Topology Links Module.
19 Module that holds the links for a region
20 */
21
22(function () {
23 'use strict';
24
25 var Collection, Model;
26
27 function createLinkCollection(data, region) {
28
29 var LinkCollection = Collection.extend({
30 model: Model
31 });
32
33 return new LinkCollection(data);
34 }
35
36 angular.module('ovTopo2')
37 .factory('Topo2LinkService',
38 ['Topo2Collection', 'Topo2Model',
39
40 function (_Collection_, _Model_) {
41
42 Collection = _Collection_;
43 Model = _Model_.extend({});
44
45 return {
46 createLinkCollection: createLinkCollection
47 };
48 }
49 ]);
50
51})();