javaextensions/bluetooth/bluetoothplugins/btl2cappushplugin/inc/btl2capserverconnectionfactory.h
branchRCL_3
changeset 14 04becd199f91
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/javaextensions/bluetooth/bluetoothplugins/btl2cappushplugin/inc/btl2capserverconnectionfactory.h	Tue Apr 27 16:30:29 2010 +0300
@@ -0,0 +1,93 @@
+/*
+* Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:
+*
+*/
+
+
+#ifndef BTL2CAPSERVERCONNECTIONFACTORY_H
+#define BTL2CAPSERVERCONNECTIONFACTORY_H
+
+#include "javaosheaders.h"
+#include "serverconnectionfactorybase.h"
+
+namespace java
+{
+namespace bluetooth
+{
+
+/**
+ * BtL2CapServerConnectionFactory used to create the ServerConnection.
+ * It implements ServerConnectionFactoryBase.
+ *
+ * Internally it contains a Function Server that will be passed to every
+ * ServerConnection object created.
+ *
+ *  @lib javabtl2capscplugin.dll
+ *  @
+ */
+class BtL2CapServerConnectionFactory:
+        public java::push::ServerConnectionFactoryBase
+{
+    //Not implemented
+    BtL2CapServerConnectionFactory(const BtL2CapServerConnectionFactory&);
+    BtL2CapServerConnectionFactory &operator=(
+        const BtL2CapServerConnectionFactory&);
+
+public:
+    OS_IMPORT BtL2CapServerConnectionFactory();
+    OS_IMPORT ~BtL2CapServerConnectionFactory();
+
+    /**
+     * This operation creates ServerConnection if it is not already created.
+     * @exception throws RuntimeException if type of the existing ServerConnection
+     *  object is PUSH_LISTEN_BY_MIDLET || PUSH and isMultipleSrvConnAllowed()
+     *  operation returns 'false'.
+     */
+    OS_IMPORT virtual java::push::ServerConnection* create(
+        const std::wstring& aUri);
+    /**
+     * create serverconnection for the given Connection URI
+     * @
+     *
+     * @return ServerConnection
+     */
+    OS_IMPORT
+    virtual java::push::ServerConnection* createSrvConnObj(
+        const std::wstring& aUri, const std::wstring& aFilter);
+
+    /**
+     * Checks for multiple server connection is allowed for the given
+     * Connection URI
+     *
+     *
+     * @return
+     */
+    OS_IMPORT virtual bool isMultipleSrvConnAllowed();
+
+    /**
+     * factory method to create the server connection factory
+     * @
+     *
+     * @return BtL2CapServerConnectionFactory
+     */
+    OS_IMPORT static BtL2CapServerConnectionFactory& getFactory();
+
+};
+
+} // namespace java
+} // namespace bluetooth
+
+
+#endif // BTL2CAPSERVERCONNECTIONFACTORY_H