Package org.onosproject.net.mcast
Class McastRoute
- java.lang.Object
-
- org.onosproject.net.mcast.McastRoute
-
@Deprecated public class McastRoute extends java.lang.Object
Deprecated.in 1.11 ("Loon") release. To be moved into an app.An entity representing a multicast route consisting of a source and a multicast group address.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
McastRoute.Type
Deprecated.
-
Constructor Summary
Constructors Constructor Description McastRoute(IpAddress source, IpAddress group, McastRoute.Type type)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
Deprecated.IpAddress
group()
Deprecated.Fetches the group address of this route.int
hashCode()
Deprecated.IpAddress
source()
Deprecated.Fetches the source address of this route.java.lang.String
toString()
Deprecated.McastRoute.Type
type()
Deprecated.Obtains how this route was created.
-
-
-
Constructor Detail
-
McastRoute
public McastRoute(IpAddress source, IpAddress group, McastRoute.Type type)
Deprecated.
-
-
Method Detail
-
source
public IpAddress source()
Deprecated.Fetches the source address of this route.- Returns:
- an ip address
-
group
public IpAddress group()
Deprecated.Fetches the group address of this route.- Returns:
- an ip address
-
type
public McastRoute.Type type()
Deprecated.Obtains how this route was created.- Returns:
- a type of route
-
toString
public java.lang.String toString()
Deprecated.- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
Deprecated.- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
Deprecated.- Overrides:
hashCode
in classjava.lang.Object
-
-