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
ConstructorDescriptionCmdLogout
(com.vaadin.flow.component.Component component) Creates an instance of aCmdLogout
record class. -
Method Summary
Modifier and TypeMethodDescriptioncom.vaadin.flow.component.Component
Returns the value of thecomponent
record component.final boolean
Indicates whether some other object is "equal to" this one.void
execute()
final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods 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 aCmdLogout
record class.- Parameters:
component
- the value for thecomponent
record component
-
-
Method Details
-
execute
public void execute()- Specified by:
execute
in 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 thecomponent
record component.- Returns:
- the value of the
component
record component
-