summaryrefslogtreecommitdiff
path: root/src/interfaces/jdbc/org/postgresql/PGNotification.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces/jdbc/org/postgresql/PGNotification.java')
-rw-r--r--src/interfaces/jdbc/org/postgresql/PGNotification.java31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/PGNotification.java b/src/interfaces/jdbc/org/postgresql/PGNotification.java
deleted file mode 100644
index b6d9f322a24..00000000000
--- a/src/interfaces/jdbc/org/postgresql/PGNotification.java
+++ /dev/null
@@ -1,31 +0,0 @@
-/*-------------------------------------------------------------------------
- *
- * PGNotification.java
- * This interface defines public PostgreSQL extention for Notifications
- *
- * Copyright (c) 2003, PostgreSQL Global Development Group
- *
- * IDENTIFICATION
- * $PostgreSQL: pgsql/src/interfaces/jdbc/org/postgresql/PGNotification.java,v 1.4 2003/11/29 19:52:09 pgsql Exp $
- *
- *-------------------------------------------------------------------------
- */
-package org.postgresql;
-
-
-public interface PGNotification
-{
- /**
- * Returns name of this notification
- * @since 7.3
- */
- public String getName();
-
- /**
- * Returns the process id of the backend process making this notification
- * @since 7.3
- */
- public int getPID();
-
-}
-