Package ch.nolix.system.application.main
Klasse AbstractFrontendClient<C extends AbstractFrontendClient<C>>
java.lang.Object
ch.nolix.system.application.main.AbstractClient<C>
ch.nolix.system.application.main.AbstractFrontendClient<C>
- Typparameter:
C
- is the type of aAbstractFrontendClient
.
- Alle implementierten Schnittstellen:
Closeable
,CloseStateRequestable
,GroupCloseable
,AutoCloseable
public abstract class AbstractFrontendClient<C extends AbstractFrontendClient<C>>
extends AbstractClient<C>
- Version:
- 2022-03-18
- Autor:
- Silvan Wyss
-
Konstruktorübersicht
Konstruktoren -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungprotected final void
connectTo
(int port) Connects the currentAbstractFrontendClient
to the defaultApplication
on the given port on the local computer.protected final void
Connects the currentAbstractFrontendClient
to theApplication
with the given name on the given port on the local computer.protected final void
connectTo
(AbstractServer<?> server) Connects the currentAbstractFrontendClient
to the defaultApplication
on the given server.protected final void
connectTo
(AbstractServer<?> server, String instanceName) Connects the currentAbstractFrontendClient
to theApplication
with the given instanceName on the given server.protected final void
connectTo
(Application<?, ?> application) Connects the currentAbstractFrontendClient
to the given application.protected final void
Connects the currentAbstractFrontendClient
to the defaultApplication
on the HTTP port (80) on the computer with the given ip.protected final void
Connects the currentAbstractFrontendClient
to the defaultApplication
on given port on the computer with the given ip.protected final void
Connects the currentAbstractFrontendClient
to theApplication
with the given name on the given port on the computer with the given ip.final boolean
final boolean
Von Klasse geerbte Methoden ch.nolix.system.application.main.AbstractClient
asConcrete, containsSessionVariableWithKey, getDataFromCounterpart, getDataFromHere, getSecurityMode, getSessionVariableValueByKey, getStoredCloseController, getTarget, hasRequestedConnection, hasTarget, isClosed, isConnected, isLocalClient, isNetClient, isWebClient, runHere, runOnCounterpart, runOnCounterpart, runOnCounterpart, setSessionVariableWithKeyAndValue
Von Klasse geerbte Methoden java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Von Schnittstelle geerbte Methoden ch.nolix.coreapi.resourcecontrolapi.resourceclosingapi.CloseStateRequestable
isOpen
Von Schnittstelle geerbte Methoden ch.nolix.coreapi.resourcecontrolapi.resourceclosingapi.GroupCloseable
close, createCloseDependencyTo, noteClose
-
Konstruktordetails
-
AbstractFrontendClient
public AbstractFrontendClient()
-
-
Methodendetails
-
isBackendClient
public final boolean isBackendClient()- Angegeben von:
isBackendClient
in KlasseAbstractClient<C extends AbstractFrontendClient<C>>
- Gibt zurück:
- true if the current
AbstractClient
is a backendAbstractClient
.
-
isFrontendClient
public final boolean isFrontendClient()- Angegeben von:
isFrontendClient
in KlasseAbstractClient<C extends AbstractFrontendClient<C>>
- Gibt zurück:
- true if the current
AbstractClient
is a frontendAbstractClient
.
-
connectTo
Connects the currentAbstractFrontendClient
to the given application.- Parameter:
application
-- Löst aus:
InvalidArgumentException
- if the currentAbstractFrontendClient
is already connected.
-
connectTo
Connects the currentAbstractFrontendClient
to the defaultApplication
on the given server.- Parameter:
server
-- Löst aus:
InvalidArgumentException
- if the currentAbstractFrontendClient
is already connected.
-
connectTo
protected final void connectTo(int port) Connects the currentAbstractFrontendClient
to the defaultApplication
on the given port on the local computer.- Parameter:
port
-- Löst aus:
ArgumentIsOutOfRangeException
- if the given port is not in [0, 65535].InvalidArgumentException
- if the currentAbstractFrontendClient
is already connected.
-
connectTo
Connects the currentAbstractFrontendClient
to theApplication
with the given name on the given port on the local computer.- Parameter:
port
-name
-- Löst aus:
ArgumentIsOutOfRangeException
- if the given port is not in [0, 65535].ArgumentIsNullException
- if the given name is null.EmptyArgumentException
- if the given name is blank.InvalidArgumentException
- if the currentAbstractFrontendClient
is already connected.
-
connectTo
Connects the currentAbstractFrontendClient
to theApplication
with the given instanceName on the given server.- Parameter:
server
-instanceName
-- Löst aus:
ArgumentIsNullException
- if the given instanceName is null.EmptyArgumentException
- if the given instanceName is blank.InvalidArgumentException
- if the currentAbstractFrontendClient
is already connected.
-
connectTo
Connects the currentAbstractFrontendClient
to the defaultApplication
on the HTTP port (80) on the computer with the given ip.- Parameter:
ip
-- Löst aus:
InvalidArgumentException
- if the currentAbstractFrontendClient
is already connected.
-
connectTo
Connects the currentAbstractFrontendClient
to the defaultApplication
on given port on the computer with the given ip.- Parameter:
ip
-port
-- Löst aus:
ArgumentIsOutOfRangeException
- if the given port is not in [0, 65535].InvalidArgumentException
- if the currentAbstractFrontendClient
is already connected.
-
connectTo
Connects the currentAbstractFrontendClient
to theApplication
with the given name on the given port on the computer with the given ip.- Parameter:
ip
-port
-name
-- Löst aus:
ArgumentIsOutOfRangeException
- if the given port is not in [0, 65535].ArgumentIsNullException
- if the given name is null.EmptyArgumentException
- if the given name is blank.InvalidArgumentException
- if the currentAbstractFrontendClient
is already connected.
-