Package org.opennms.netmgt.flows.api
Class Conversation
- java.lang.Object
-
- org.opennms.netmgt.flows.api.Conversation
-
public class Conversation extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Conversation.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Conversation.Builder
builder()
boolean
equals(Object o)
static Conversation.Builder
forOther()
static Conversation.Builder
from(Conversation convo)
static Conversation.Builder
from(ConversationKey key)
String
getApplication()
String
getLocation()
Host
getLowerHost()
Optional<String>
getLowerHostname()
String
getLowerIp()
Integer
getProtocol()
Host
getUpperHost()
Optional<String>
getUpperHostname()
String
getUpperIp()
int
hashCode()
String
toString()
-
-
-
Method Detail
-
getLocation
public String getLocation()
-
getProtocol
public Integer getProtocol()
-
getLowerHost
public Host getLowerHost()
-
getLowerIp
public String getLowerIp()
-
getUpperHost
public Host getUpperHost()
-
getUpperIp
public String getUpperIp()
-
getApplication
public String getApplication()
-
builder
public static Conversation.Builder builder()
-
from
public static Conversation.Builder from(ConversationKey key)
-
from
public static Conversation.Builder from(Conversation convo)
-
forOther
public static Conversation.Builder forOther()
-
-