1 23 24 package com.sun.enterprise.iiop.security; 25 26 import java.io.*; 27 import java.net.Socket ; 28 29 32 33 public final class ServerConnectionContext implements Serializable { 34 private Socket socket = null; 35 36 39 public ServerConnectionContext() { 40 } 41 42 45 public ServerConnectionContext(Socket sock) { 46 this.socket = sock; 47 } 48 49 52 public Socket getSocket() { 53 return socket; 54 } 55 56 59 public void setSocket(Socket s) { 60 socket = s; 61 } 62 63 public String toString() { 64 String s = "Socket=" + socket; 65 return s; 66 } 67 } 68 69 70 | Popular Tags |