Skip to content
Snippets Groups Projects
Commit e4309727 authored by Ryan Izard's avatar Ryan Izard
Browse files

Removed unused imports from DeviceSyncRepresentation.

parent 7dadba54
No related branches found
No related tags found
No related merge requests found
......@@ -13,33 +13,22 @@ import org.projectfloodlight.openflow.types.MacAddress;
import org.projectfloodlight.openflow.types.OFPort;
import org.projectfloodlight.openflow.types.VlanVid;
import net.floodlightcontroller.core.web.serializers.DPIDSerializer;
import net.floodlightcontroller.core.web.serializers.IPv4Serializer;
import net.floodlightcontroller.core.web.serializers.MacSerializer;
import net.floodlightcontroller.core.web.serializers.OFPortSerializer;
import net.floodlightcontroller.core.web.serializers.VlanVidSerializer;
import net.floodlightcontroller.devicemanager.IDeviceService.DeviceField;
import net.floodlightcontroller.devicemanager.SwitchPort;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
public class DeviceSyncRepresentation {
public static class SyncEntity implements Comparable<SyncEntity> {
@JsonProperty
//@JsonSerialize(using = MacSerializer.class)
public long macAddress;
@JsonProperty
//@JsonSerialize(using = IPv4Serializer.class)
public int ipv4Address;
@JsonProperty
//@JsonSerialize(using = VlanVidSerializer.class)
public short vlan;
@JsonProperty
//@JsonSerialize(using = DPIDSerializer.class)
public long switchDPID;
@JsonProperty
//@JsonSerialize(using = OFPortSerializer.class)
public int switchPort;
@JsonProperty
public Date lastSeenTimestamp;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment