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.java21
1 files changed, 16 insertions, 5 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/PGNotification.java b/src/interfaces/jdbc/org/postgresql/PGNotification.java
index dbcd6fbe6a..7a439d40c6 100644
--- a/src/interfaces/jdbc/org/postgresql/PGNotification.java
+++ b/src/interfaces/jdbc/org/postgresql/PGNotification.java
@@ -1,18 +1,29 @@
+/*-------------------------------------------------------------------------
+ *
+ * PGNotification.java
+ * This interface defines public PostgreSQL extention for Notifications
+ *
+ * Copyright (c) 2003, PostgreSQL Global Development Group
+ *
+ * IDENTIFICATION
+ * $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/Attic/PGNotification.java,v 1.3 2003/03/07 18:39:41 barry Exp $
+ *
+ *-------------------------------------------------------------------------
+ */
package org.postgresql;
-/* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/Attic/PGNotification.java,v 1.2 2002/09/06 21:23:05 momjian Exp $
- * This interface defines PostgreSQL extention for Notifications
- */
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();