Moving IntentUtils to intent package

Change-Id: I258c1d988e4bea4b79bdb0c2235e02fe5404ea52
This commit is contained in:
Luca Prete 2015-12-02 23:36:49 -08:00 committed by Gerrit Code Review
parent ac099e80ef
commit 86ac7d158d
5 changed files with 5 additions and 6 deletions

View File

@ -30,6 +30,7 @@ import org.onosproject.core.ApplicationId;
import org.onosproject.net.intent.Intent; import org.onosproject.net.intent.Intent;
import org.onosproject.net.intent.IntentService; import org.onosproject.net.intent.IntentService;
import org.onosproject.net.intent.IntentState; import org.onosproject.net.intent.IntentState;
import org.onosproject.net.intent.IntentUtils;
import org.onosproject.net.intent.Key; import org.onosproject.net.intent.Key;
import org.onosproject.routing.IntentSynchronizationService; import org.onosproject.routing.IntentSynchronizationService;
import org.slf4j.Logger; import org.slf4j.Logger;

View File

@ -33,6 +33,7 @@ import org.onosproject.net.flow.DefaultTrafficTreatment;
import org.onosproject.net.flow.TrafficSelector; import org.onosproject.net.flow.TrafficSelector;
import org.onosproject.net.flow.TrafficTreatment; import org.onosproject.net.flow.TrafficTreatment;
import org.onosproject.net.host.InterfaceIpAddress; import org.onosproject.net.host.InterfaceIpAddress;
import org.onosproject.net.intent.IntentUtils;
import org.onosproject.net.intent.Key; import org.onosproject.net.intent.Key;
import org.onosproject.net.intent.PointToPointIntent; import org.onosproject.net.intent.PointToPointIntent;
import org.onosproject.routing.IntentSynchronizationService; import org.onosproject.routing.IntentSynchronizationService;

View File

@ -45,6 +45,7 @@ import org.onosproject.net.intent.IntentService;
import org.onosproject.net.intent.IntentState; import org.onosproject.net.intent.IntentState;
import org.onosproject.net.intent.Key; import org.onosproject.net.intent.Key;
import org.onosproject.net.intent.MultiPointToSinglePointIntent; import org.onosproject.net.intent.MultiPointToSinglePointIntent;
import org.onosproject.net.intent.IntentUtils;
import org.onosproject.routing.RouteEntry; import org.onosproject.routing.RouteEntry;
import java.util.Collections; import java.util.Collections;

View File

@ -17,6 +17,7 @@ package org.onosproject.sdnip;
import org.easymock.IArgumentMatcher; import org.easymock.IArgumentMatcher;
import org.onosproject.net.intent.Intent; import org.onosproject.net.intent.Intent;
import org.onosproject.net.intent.IntentUtils;
import static org.easymock.EasyMock.reportMatcher; import static org.easymock.EasyMock.reportMatcher;

View File

@ -14,12 +14,8 @@
* limitations under the License. * limitations under the License.
*/ */
package org.onosproject.sdnip; package org.onosproject.net.intent;
import org.onosproject.net.intent.Intent;
import org.onosproject.net.intent.MultiPointToSinglePointIntent;
import org.onosproject.net.intent.PointToPointIntent;
import org.onosproject.net.intent.SinglePointToMultiPointIntent;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
@ -33,7 +29,6 @@ public final class IntentUtils {
private static final Logger log = LoggerFactory.getLogger(IntentUtils.class); private static final Logger log = LoggerFactory.getLogger(IntentUtils.class);
private IntentUtils() { private IntentUtils() {
} }
/** /**