blob: 421f57d7478bf5c2a5298044a7e5ebfb6eb66e2c [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 SubRegion Module.
19 Module that holds the sub-regions for a region
20 */
21
22(function () {
23 'use strict';
24
25 var Collection, Model;
26
27 function createSubRegionCollection(data, region) {
28
29 var SubRegionCollection = Collection.extend({
30 model: Model
31 });
32
33 return new SubRegionCollection(data);
34 }
35
36 angular.module('ovTopo2')
37 .factory('Topo2SubRegionService',
38 ['Topo2Collection', 'Topo2Model',
39
40 function (_Collection_, _Model_) {
41
42 Collection = _Collection_;
43 Model = _Model_.extend({});
44
45 return {
46 createSubRegionCollection: createSubRegionCollection
47 };
48 }
49 ]);
50
51})();