Record Class ThirdPartyAppCreatedEvent
java.lang.Object
java.lang.Record
io.github.xezzon.zeroweb.third_party_app.event.ThirdPartyAppCreatedEvent
- Record Components:
thirdPartyApp- 创建的第三方应用
第三方应用创建事件
当第三方应用创建成功后发布的事件,用于通知其他组件进行相关处理
- Author:
- xezzon
-
Constructor Summary
ConstructorsConstructorDescriptionThirdPartyAppCreatedEvent(ThirdPartyApp thirdPartyApp) Creates an instance of aThirdPartyAppCreatedEventrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of thethirdPartyApprecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ThirdPartyAppCreatedEvent
Creates an instance of aThirdPartyAppCreatedEventrecord class.- Parameters:
thirdPartyApp- the value for thethirdPartyApprecord component
-
-
Method Details
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
thirdPartyApp
Returns the value of thethirdPartyApprecord component.- Returns:
- the value of the
thirdPartyApprecord component
-