EchoObject

Beschreibung

EchoObject
David Utza
Notiz von David Utza, aktualisiert more than 1 year ago
David Utza
Erstellt von David Utza vor mehr als 7 Jahre
3
0

Zusammenfassung der Ressource

Seite 1

import java.rmi.*;import java.rmi.server.UnicastRemoteObject;/** * Klasse EchoObject * * * * @version 2016-09-09 * @author David *//** Tatsächlicher Server */@SuppressWarnings("serial")public class EchoObject extends UnicastRemoteObject implements EchoService{ private String response; private int uid = 0; public EchoObject () throws RemoteException { super(); response = ""; } public String getResponse () throws RemoteException { String result = null; result = response; System.out.println("Aufruf von getResponse()"); return result; } public void request (String request) throws RemoteException { response = request; } public int setouruid() throws RemoteException{ ++uid; System.out.println("ID gestzt: "+ uid); return uid; } public String getc(int uid)throws RemoteException{ if (this.uid == uid) return "ID found "+ uid; return "trouble"; }}

Zusammenfassung anzeigen Zusammenfassung ausblenden

ähnlicher Inhalt

ein kleines Informatik Quiz
AntonS
Informatik
Tom Kühling
PHP Grundlagen
chrisi.0605
Wirtschaftsinformatik Teil 2
Sabrina Heckler
Informatik 1 - Einführung
Svenja
Codierung
Tom Kühling
Wirtschaftsinformatik Teil 1
Sabrina Heckler
Einführung in das Studium Informatik
Daniel Doe
Lernplan
Sandra K
Datenstrukturen
Ann-Kathrine Buchmakowsky