From 8f04da1b3d0a7832ea17b52a179a13a7a3f6083f Mon Sep 17 00:00:00 2001 From: Emil Ivov Date: Sat, 12 Aug 2006 10:14:53 +0000 Subject: [PATCH] Unnecessary. Moved static vars to protocol provider factory --- .../service/protocol/AccountProperties.java | 23 ------------------- 1 file changed, 23 deletions(-) delete mode 100644 src/net/java/sip/communicator/service/protocol/AccountProperties.java diff --git a/src/net/java/sip/communicator/service/protocol/AccountProperties.java b/src/net/java/sip/communicator/service/protocol/AccountProperties.java deleted file mode 100644 index 2c6aeecaa..000000000 --- a/src/net/java/sip/communicator/service/protocol/AccountProperties.java +++ /dev/null @@ -1,23 +0,0 @@ -/* - * SIP Communicator, the OpenSource Java VoIP and Instant Messaging client. - * - * Distributable under LGPL license. - * See terms of license at gnu.org. - */ -package net.java.sip.communicator.service.protocol; - -/** - * Contains a list of property names that would be needed for the installation - * of a protocol account. These property names are meant for use by - *

- * This interface is meant to serve as a contract between - * service implementors on the one hand, who would be needing these properties - * in order to actually create and install an account, and service users on the - * other hand, who would need to specify the before requestion account - * installation. - * @author Emil Ivov - */ -public interface AccountProperties -{ - public static final String PASSWORD = "Password"; -}