Package io.temporal.common.metadata
Class POJOActivityMethodMetadata
- java.lang.Object
-
- io.temporal.common.metadata.POJOActivityMethodMetadata
-
public final class POJOActivityMethodMetadata extends java.lang.Object
Metadata of a single activity method.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
Compare and hash based on method and the interface type only.java.lang.String
getActivityTypeName()
Name of activity type that this method implementsjava.lang.reflect.Method
getMethod()
Interface method that defines the activity.int
hashCode()
Compare and hash based on method and the interface type only.
-
-
-
Method Detail
-
getActivityTypeName
public java.lang.String getActivityTypeName()
Name of activity type that this method implements
-
getMethod
public java.lang.reflect.Method getMethod()
Interface method that defines the activity.
-
equals
public boolean equals(java.lang.Object o)
Compare and hash based on method and the interface type only.- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
Compare and hash based on method and the interface type only.- Overrides:
hashCode
in classjava.lang.Object
-
-