[Comsuite-svn] SF.net SVN: comsuite: [143] trunk/code/CSMiddleware/src/org/commsuite/ scratchpad
Brought to you by:
zduniak
|
From: <zd...@us...> - 2006-09-21 21:12:01
|
Revision: 143
http://svn.sourceforge.net/comsuite/?rev=143&view=rev
Author: zduniak
Date: 2006-09-21 14:11:53 -0700 (Thu, 21 Sep 2006)
Log Message:
-----------
Unnecessary files and folders deleted (from scratchpad package)
Removed Paths:
-------------
trunk/code/CSMiddleware/src/org/commsuite/scratchpad/wisniewska/
trunk/code/CSMiddleware/src/org/commsuite/scratchpad/zduniakm/SAPInstancesSupplier.java
trunk/code/CSMiddleware/src/org/commsuite/scratchpad/zduniakm/sapemulator/
Deleted: trunk/code/CSMiddleware/src/org/commsuite/scratchpad/zduniakm/SAPInstancesSupplier.java
===================================================================
--- trunk/code/CSMiddleware/src/org/commsuite/scratchpad/zduniakm/SAPInstancesSupplier.java 2006-09-21 21:06:39 UTC (rev 142)
+++ trunk/code/CSMiddleware/src/org/commsuite/scratchpad/zduniakm/SAPInstancesSupplier.java 2006-09-21 21:11:53 UTC (rev 143)
@@ -1,73 +0,0 @@
-/* $Id$
- *
- * Communications Suite.
- * Copyright (C) 2006 Szymon Kuzniak, Rafal Malinowski, Marek Musielak, Pawel Walkiewicz,
- * Agnieszka Wisniewska, Marcin Zduniak, Liliana Ziolek.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the <a href="http://www.gnu.org/licenses/gpl.html">GNU General Public License</a>
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
- */
-package org.commsuite.scratchpad.zduniakm;
-
-import java.util.Collection;
-
-import javolution.util.FastTable;
-
-import org.apache.log4j.Logger;
-import org.commsuite.model.SAPInstanceDef;
-
-/**
- * @since 1.0
- * @author Marcin Zduniak
- *
- * @deprecated We should use SAP Instances defined in DB instead.
- */
-public class SAPInstancesSupplier {
-
- private static final Logger logger = Logger.getLogger(SAPInstancesSupplier.class);
-
- public SAPInstancesSupplier() {
- super();
- }
-
- public static Collection<SAPInstanceDef> obtainSAPInstances() {
- logger.info("Running obtainSAPInstances() method.");
-
- final SAPInstanceDef inst = new SAPInstanceDef();
-
- inst.setClient("100");
- inst.setDefaultInstance(true);
- //inst.setGruop();
- inst.setGwhost("bcz.bcc.com.pl");
- inst.setGwserv("sapgw44");
- inst.setHost(inst.getGwhost());
- //inst.setId() // assigned by DB
-// inst.setLanguage("EN");
- inst.setLoadBalancing(false);
- inst.setMaxConnectionsInPool(5);
- inst.setName("BCC_BCZ_100");
- inst.setPassword("changeme");
- inst.setProgid("ZTESTJCO");
- inst.setSystemNumber("44");
- inst.setUser("cstest");
- inst.setUnicode(false);
- inst.setId(1234567890L);
- inst.setAdminEmail("mar...@bc...");
-
- final Collection<SAPInstanceDef> collection = new FastTable<SAPInstanceDef>();
- collection.add(inst);
- return collection;
- }
-
-}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|