Class SpaceView

java.lang.Object
com.vaadin.flow.component.Component
com.vaadin.flow.component.Composite<T>
io.jmix.flowui.view.View<io.jmix.flowui.component.layout.ViewLayout>
io.jmix.flowui.view.StandardView
de.bytestore.hostinger.view.space.SpaceView
All Implemented Interfaces:
com.vaadin.flow.component.AttachNotifier, com.vaadin.flow.component.DetachNotifier, com.vaadin.flow.component.HasElement, com.vaadin.flow.component.HasStyle, com.vaadin.flow.router.AfterNavigationObserver, com.vaadin.flow.router.BeforeEnterObserver, com.vaadin.flow.router.BeforeLeaveObserver, com.vaadin.flow.router.HasDynamicTitle, com.vaadin.flow.router.internal.AfterNavigationHandler, com.vaadin.flow.router.internal.BeforeEnterHandler, com.vaadin.flow.router.internal.BeforeLeaveHandler, io.jmix.flowui.fragment.FragmentOwner, Serializable

@Route(value="space", layout=MainView.class) @ViewController("host_Space") @ViewDescriptor("Space.xml") public class SpaceView extends io.jmix.flowui.view.StandardView
See Also:
  • Nested Class Summary

    Nested classes/interfaces inherited from class io.jmix.flowui.view.View

    io.jmix.flowui.view.View.AfterCloseEvent, io.jmix.flowui.view.View.BeforeCloseEvent, io.jmix.flowui.view.View.BeforeShowEvent, io.jmix.flowui.view.View.InitEvent, io.jmix.flowui.view.View.PostReadyEvent, io.jmix.flowui.view.View.QueryParametersChangeEvent, io.jmix.flowui.view.View.ReadyEvent, io.jmix.flowui.view.View.RestoreComponentsStateEvent
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    onAddRemoteAccessClick(com.vaadin.flow.component.ClickEvent<io.jmix.flowui.kit.component.button.JmixButton> event)
     
    void
    onAllowRemoteSupportComponentValueChange(com.vaadin.flow.component.AbstractField.ComponentValueChangeEvent<io.jmix.flowui.component.checkbox.JmixCheckbox,?> event)
     
    void
    onInit(io.jmix.flowui.view.View.InitEvent event)
    Subscribes to the InitEvent and initializes the Space.
    void
    onNewPinClick(com.vaadin.flow.component.ClickEvent<io.jmix.flowui.kit.component.button.JmixButton> event)
     
    void
    onPasswordComponentValueChange(com.vaadin.flow.component.AbstractField.ComponentValueChangeEvent<io.jmix.flowui.component.textfield.JmixPasswordField,?> event)
     
    void
    onSaveCredentialsClick(com.vaadin.flow.component.ClickEvent<io.jmix.flowui.kit.component.button.JmixButton> event)
    Saves the credentials when the "Save Credentials" button is clicked.
    void
    onSubmitFeedbackClick(com.vaadin.flow.component.ClickEvent<io.jmix.flowui.kit.component.button.JmixButton> event)
     
    void
    onUpdateFeedbackComponentValueChange(com.vaadin.flow.component.AbstractField.ComponentValueChangeEvent<io.jmix.flowui.component.textarea.JmixTextArea,?> event)
     
    void
    onUsernameComponentValueChange(com.vaadin.flow.component.AbstractField.ComponentValueChangeEvent<io.jmix.flowui.component.textfield.TypedTextField<?>,?> event)
     

    Methods inherited from class io.jmix.flowui.view.View

    afterNavigation, beforeEnter, beforeLeave, close, close, closeWithDefaultAction, getId, getPageTitle, isPreventBrowserTabClosing, setId, setPageTitle, setPreventBrowserTabClosing

    Methods inherited from class com.vaadin.flow.component.Composite

    getChildren, getContent, getElement

    Methods inherited from class com.vaadin.flow.component.Component

    findAncestor, from, getParent, getTranslation, getTranslation, getTranslation, getTranslation, getTranslation, getTranslation, getUI, isAttached, isVisible, onEnabledStateChanged, removeFromParent, scrollIntoView, scrollIntoView, setVisible

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface com.vaadin.flow.component.AttachNotifier

    addAttachListener

    Methods inherited from interface com.vaadin.flow.component.DetachNotifier

    addDetachListener

    Methods inherited from interface com.vaadin.flow.component.HasStyle

    addClassName, addClassNames, getClassName, getClassNames, getStyle, hasClassName, removeClassName, removeClassNames, setClassName, setClassName
  • Constructor Details

    • SpaceView

      public SpaceView()
  • Method Details

    • onInit

      @Subscribe public void onInit(io.jmix.flowui.view.View.InitEvent event) throws org.docx4j.org.apache.xml.security.exceptions.Base64DecodingException
      Subscribes to the InitEvent and initializes the Space.
      Parameters:
      event - the InitEvent
      Throws:
      org.docx4j.org.apache.xml.security.exceptions.Base64DecodingException
    • onAllowRemoteSupportComponentValueChange

      @Subscribe("allowRemoteSupport") public void onAllowRemoteSupportComponentValueChange(com.vaadin.flow.component.AbstractField.ComponentValueChangeEvent<io.jmix.flowui.component.checkbox.JmixCheckbox,?> event)
    • onAddRemoteAccessClick

      @Subscribe(id="addRemoteAccess", subject="clickListener") public void onAddRemoteAccessClick(com.vaadin.flow.component.ClickEvent<io.jmix.flowui.kit.component.button.JmixButton> event)
    • onNewPinClick

      @Subscribe(id="newPin", subject="clickListener") public void onNewPinClick(com.vaadin.flow.component.ClickEvent<io.jmix.flowui.kit.component.button.JmixButton> event)
    • onUpdateFeedbackComponentValueChange

      @Subscribe("updateFeedback") public void onUpdateFeedbackComponentValueChange(com.vaadin.flow.component.AbstractField.ComponentValueChangeEvent<io.jmix.flowui.component.textarea.JmixTextArea,?> event)
    • onSubmitFeedbackClick

      @Subscribe(id="submitFeedback", subject="clickListener") public void onSubmitFeedbackClick(com.vaadin.flow.component.ClickEvent<io.jmix.flowui.kit.component.button.JmixButton> event)
    • onSaveCredentialsClick

      @Subscribe(id="saveCredentials", subject="clickListener") public void onSaveCredentialsClick(com.vaadin.flow.component.ClickEvent<io.jmix.flowui.kit.component.button.JmixButton> event)
      Saves the credentials when the "Save Credentials" button is clicked.
      Parameters:
      event - the click event representing the button click
    • onUsernameComponentValueChange

      @Subscribe("username") public void onUsernameComponentValueChange(com.vaadin.flow.component.AbstractField.ComponentValueChangeEvent<io.jmix.flowui.component.textfield.TypedTextField<?>,?> event)
    • onPasswordComponentValueChange

      @Subscribe("password") public void onPasswordComponentValueChange(com.vaadin.flow.component.AbstractField.ComponentValueChangeEvent<io.jmix.flowui.component.textfield.JmixPasswordField,?> event)