summaryrefslogtreecommitdiff
path: root/source/com/c2kernel/entity/proxy/ProxySubscriber.java
diff options
context:
space:
mode:
authorabranson <andrew.branson@cern.ch>2011-08-04 16:08:49 +0200
committerabranson <andrew.branson@cern.ch>2011-08-04 16:08:49 +0200
commit379ed8a0e133bee650e0acb24f6b743f657a50d0 (patch)
treebdcac37cabe3f2f3d40715519b830469dc9e63ad /source/com/c2kernel/entity/proxy/ProxySubscriber.java
parent0ec8481c10cd8277d84c7c1a785483a0a739e5a0 (diff)
Last bit of cleanup honest
New castor and dependent commons libs
Diffstat (limited to 'source/com/c2kernel/entity/proxy/ProxySubscriber.java')
-rw-r--r--source/com/c2kernel/entity/proxy/ProxySubscriber.java36
1 files changed, 0 insertions, 36 deletions
diff --git a/source/com/c2kernel/entity/proxy/ProxySubscriber.java b/source/com/c2kernel/entity/proxy/ProxySubscriber.java
deleted file mode 100644
index 8cb85fa..0000000
--- a/source/com/c2kernel/entity/proxy/ProxySubscriber.java
+++ /dev/null
@@ -1,36 +0,0 @@
-package com.c2kernel.entity.proxy;
-
-import java.net.DatagramPacket;
-import java.net.InetAddress;
-import java.util.ArrayList;
-
-import com.c2kernel.common.InvalidDataException;
-
-/**************************************************************************
- *
- * $Revision: 1.1 $
- * $Date: 2003/04/24 10:12:40 $
- *
- * Copyright (C) 2003 CERN - European Organization for Nuclear Research
- * All rights reserved.
- **************************************************************************/
-
-public class ProxySubscriber {
-
- private InetAddress host;
- private int port;
- public ArrayList<?> sysKeys = new ArrayList<Object>();
-
- public ProxySubscriber(DatagramPacket packet) throws InvalidDataException {
- host = packet.getAddress();
- port = packet.getPort();
- }
-
- public InetAddress getHost() {
- return host;
- }
-
- public int getPort() {
- return port;
- }
-}