samueljcc
Committed by Gerrit Code Review

[ONOS-3226] Move FlowClassifierCodec from vtnrsc bundle to vtnweb

bundle. It should belongs vtnweb bundle

Change-Id: I766701a3699c22894e6d7e6dcc74d920e5962808
1 -/*
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 - */
16 -
17 -/**
18 - * Codecs for virtual tenant objects.
19 - */
20 -package org.onosproject.vtnrsc.web;
...@@ -40,7 +40,7 @@ import org.onosproject.vtnrsc.FlowClassifier; ...@@ -40,7 +40,7 @@ import org.onosproject.vtnrsc.FlowClassifier;
40 import org.onosproject.vtnrsc.FlowClassifierId; 40 import org.onosproject.vtnrsc.FlowClassifierId;
41 import org.onosproject.rest.AbstractWebResource; 41 import org.onosproject.rest.AbstractWebResource;
42 import org.onosproject.vtnrsc.flowClassifier.FlowClassifierService; 42 import org.onosproject.vtnrsc.flowClassifier.FlowClassifierService;
43 -import org.onosproject.vtnrsc.web.FlowClassifierCodec; 43 +import org.onosproject.vtnweb.web.FlowClassifierCodec;
44 44
45 import com.fasterxml.jackson.databind.ObjectMapper; 45 import com.fasterxml.jackson.databind.ObjectMapper;
46 import com.fasterxml.jackson.databind.node.ObjectNode; 46 import com.fasterxml.jackson.databind.node.ObjectNode;
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
13 * See the License for the specific language governing permissions and 13 * See the License for the specific language governing permissions and
14 * limitations under the License. 14 * limitations under the License.
15 */ 15 */
16 -package org.onosproject.vtnrsc.web; 16 +package org.onosproject.vtnweb.web;
17 17
18 import static com.google.common.base.Preconditions.checkNotNull; 18 import static com.google.common.base.Preconditions.checkNotNull;
19 import static org.onlab.util.Tools.nullIsIllegal; 19 import static org.onlab.util.Tools.nullIsIllegal;
......