Record Class CmdLogout
java.lang.Object
java.lang.Record
net.tangly.app.ui.CmdLogout
- All Implemented Interfaces:
net.tangly.ui.app.domain.Cmd
public record CmdLogout(com.vaadin.flow.component.Component component)
extends Record
implements net.tangly.ui.app.domain.Cmd
-
Constructor Summary
ConstructorsConstructorDescriptionCmdLogout(com.vaadin.flow.component.Component component) Creates an instance of aCmdLogoutrecord class. -
Method Summary
Modifier and TypeMethodDescriptioncom.vaadin.flow.component.ComponentReturns the value of thecomponentrecord component.final booleanIndicates whether some other object is "equal to" this one.voidexecute()final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.tangly.ui.app.domain.Cmd
dialog, isEnabled
-
Constructor Details
-
CmdLogout
public CmdLogout(com.vaadin.flow.component.Component component) Creates an instance of aCmdLogoutrecord class.- Parameters:
component- the value for thecomponentrecord component
-
-
Method Details
-
execute
public void execute()- Specified by:
executein interfacenet.tangly.ui.app.domain.Cmd
-
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). -
component
public com.vaadin.flow.component.Component component()Returns the value of thecomponentrecord component.- Returns:
- the value of the
componentrecord component
-