Skip to Content.
Sympa Menu

notify-dpml - svn commit: r2427 - in development/laboratory/users/niclas/iso8583: . api/src/main/net/dpml/iso8583/data channels/src/main/net/dpml/iso8583/channels mti mti/src/main/net/dpml/iso8583/data/mti

notify-dpml AT lists.ibiblio.org

Subject: DPML Notify

List archive

Chronological Thread  
  • From: niclas AT hedhman.org
  • To: notify-dpml AT lists.ibiblio.org
  • Subject: svn commit: r2427 - in development/laboratory/users/niclas/iso8583: . api/src/main/net/dpml/iso8583/data channels/src/main/net/dpml/iso8583/channels mti mti/src/main/net/dpml/iso8583/data/mti
  • Date: Tue, 26 Apr 2005 21:39:52 -0400

Author: niclas AT hedhman.org
Date: Tue Apr 26 21:39:49 2005
New Revision: 2427

Added:

development/laboratory/users/niclas/iso8583/channels/src/main/net/dpml/iso8583/channels/ISOMessageImpl.java
Removed:

development/laboratory/users/niclas/iso8583/api/src/main/net/dpml/iso8583/data/IsoMessageFactory.java

development/laboratory/users/niclas/iso8583/channels/src/main/net/dpml/iso8583/channels/IsoMessageImpl.java
Modified:

development/laboratory/users/niclas/iso8583/api/src/main/net/dpml/iso8583/data/ISOMessage.java

development/laboratory/users/niclas/iso8583/channels/src/main/net/dpml/iso8583/channels/LoopbackChannel.java
development/laboratory/users/niclas/iso8583/iso8583.iws
development/laboratory/users/niclas/iso8583/mti/mti.iml

development/laboratory/users/niclas/iso8583/mti/src/main/net/dpml/iso8583/data/mti/Mti100.java

development/laboratory/users/niclas/iso8583/mti/src/main/net/dpml/iso8583/data/mti/Mti101.java

development/laboratory/users/niclas/iso8583/mti/src/main/net/dpml/iso8583/data/mti/Mti110.java

development/laboratory/users/niclas/iso8583/mti/src/main/net/dpml/iso8583/data/mti/Mti120.java

development/laboratory/users/niclas/iso8583/mti/src/main/net/dpml/iso8583/data/mti/Mti121.java

development/laboratory/users/niclas/iso8583/mti/src/main/net/dpml/iso8583/data/mti/Mti130.java

development/laboratory/users/niclas/iso8583/mti/src/main/net/dpml/iso8583/data/mti/Mti140.java

development/laboratory/users/niclas/iso8583/mti/src/main/net/dpml/iso8583/data/mti/Mti150.java
Log:


Modified:
development/laboratory/users/niclas/iso8583/api/src/main/net/dpml/iso8583/data/ISOMessage.java
==============================================================================
---
development/laboratory/users/niclas/iso8583/api/src/main/net/dpml/iso8583/data/ISOMessage.java
(original)
+++
development/laboratory/users/niclas/iso8583/api/src/main/net/dpml/iso8583/data/ISOMessage.java
Tue Apr 26 21:39:49 2005
@@ -1,13 +1,25 @@
+/*
+* Copyright 2004-2005 Niclas Hedhman.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ * implied.
+ *
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package net.dpml.iso8583.data;

-/**
- * Created by IntelliJ IDEA. User: gondor Date: Apr 26, 2005 Time: 2:16:58
PM To change this template use File |
- * Settings | File Templates.
- */
public interface ISOMessage
{
- public IsoMessageFactory factory = new IsoMessageFactory();
-
String getMtiNumber()
throws ISOException;


Added:
development/laboratory/users/niclas/iso8583/channels/src/main/net/dpml/iso8583/channels/ISOMessageImpl.java
==============================================================================
--- (empty file)
+++
development/laboratory/users/niclas/iso8583/channels/src/main/net/dpml/iso8583/channels/ISOMessageImpl.java
Tue Apr 26 21:39:49 2005
@@ -0,0 +1,80 @@
+/*
+ * Copyright 2005 Niclas Hedhman.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ * implied.
+ *
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package net.dpml.iso8583.channels;
+
+import org.jpos.iso.ISOMsg;
+import net.dpml.iso8583.data.ISOMessage;
+import net.dpml.iso8583.data.ISOException;
+
+public class ISOMessageImpl
+ implements ISOMessage
+{
+ private ISOMsg m_jposMsg;
+
+ public ISOMessageImpl( String mti )
+ {
+ m_jposMsg = new ISOMsg( mti );
+ }
+
+ public ISOMessageImpl( ISOMsg msg )
+ {
+ m_jposMsg = msg;
+ }
+
+ public String getMtiNumber()
+ throws ISOException
+ {
+ try
+ {
+ return m_jposMsg.getMTI();
+ } catch( org.jpos.iso.ISOException e )
+ {
+ throw new ISOException( "Underlying ISOException.", e );
+ }
+ }
+
+ public void set( int field, byte[] data )
+ throws ISOException
+ {
+ try
+ {
+ m_jposMsg.set( field, data );
+ } catch( org.jpos.iso.ISOException e )
+ {
+ throw new ISOException( "Underlying ISOException.", e );
+ }
+ }
+
+ public String getString( int field )
+ throws ISOException
+ {
+ return m_jposMsg.getString( field );
+ }
+
+ public byte[] getData( int field )
+ throws ISOException
+ {
+ return m_jposMsg.getString( field ).getBytes();
+ }
+
+ public boolean hasField( int field )
+ {
+ return m_jposMsg.hasField( field );
+ }
+}

Modified:
development/laboratory/users/niclas/iso8583/channels/src/main/net/dpml/iso8583/channels/LoopbackChannel.java
==============================================================================
---
development/laboratory/users/niclas/iso8583/channels/src/main/net/dpml/iso8583/channels/LoopbackChannel.java
(original)
+++
development/laboratory/users/niclas/iso8583/channels/src/main/net/dpml/iso8583/channels/LoopbackChannel.java
Tue Apr 26 21:39:49 2005
@@ -23,8 +23,7 @@
/** Metro Wrapper for the Loopback Channel in JPos.
*
* @metro.component name="loopback-channel" lifestyle="singleton"
- * @metro.service type="org.jpos.iso.ISOChannel"
- * @metro.service type="org.jpos.iso.FilteredChannel"
+ * @metro.service type="net.dpml.iso8583.comm.Channel"
*/
public class LoopbackChannel extends org.jpos.iso.channel.LoopbackChannel
{

Modified: development/laboratory/users/niclas/iso8583/iso8583.iws
==============================================================================
--- development/laboratory/users/niclas/iso8583/iso8583.iws (original)
+++ development/laboratory/users/niclas/iso8583/iso8583.iws Tue Apr 26
21:39:49 2005
@@ -142,23 +142,21 @@
<method_breakpoints />
</component>
<component name="ErrorTreeViewConfiguration">
- <option name="IS_AUTOSCROLL_TO_SOURCE" value="false" />
+ <option name="IS_AUTOSCROLL_TO_SOURCE" value="true" />
<option name="HIDE_WARNINGS" value="false" />
</component>
<component name="FileEditorManager" split-orientation="vertical"
split-proportion="0.5">
- <first-group
selected-file="file://$PROJECT_DIR$/api/src/main/net/dpml/iso8583/data/IsoMessageFactory.java">
- <entry
file="file://$PROJECT_DIR$/channels/src/main/net/dpml/iso8583/channels/LogChannel.java"
pinned="false">
+ <first-group
selected-file="file://$PROJECT_DIR$/channels/src/main/net/dpml/iso8583/channels/XmlChannel.java">
+ <entry
file="file://$PROJECT_DIR$/channels/src/main/net/dpml/iso8583/channels/LoopbackChannel.java"
pinned="false">
<provider selected="true" editor-type-id="text-editor">
- <state line="36" column="0" selection-start="1137"
selection-end="1137" vertical-scroll-proportion="0.52910054">
- <folding>
- <element signature="imports" expanded="true" />
- </folding>
+ <state line="26" column="0" selection-start="866"
selection-end="866" vertical-scroll-proportion="0.18939394">
+ <folding />
</state>
</provider>
</entry>
<entry
file="file://$PROJECT_DIR$/channels/src/main/net/dpml/iso8583/channels/NacChannel.java"
pinned="false">
<provider selected="true" editor-type-id="text-editor">
- <state line="38" column="0" selection-start="1172"
selection-end="1172" vertical-scroll-proportion="0.26631394">
+ <state line="39" column="13" selection-start="1189"
selection-end="1189" vertical-scroll-proportion="0.32323232">
<folding>
<element signature="imports" expanded="true" />
</folding>
@@ -167,7 +165,7 @@
</entry>
<entry
file="file://$PROJECT_DIR$/channels/src/main/net/dpml/iso8583/channels/NccChannel.java"
pinned="false">
<provider selected="true" editor-type-id="text-editor">
- <state line="38" column="0" selection-start="1172"
selection-end="1172" vertical-scroll-proportion="0.26631394">
+ <state line="39" column="13" selection-start="1189"
selection-end="1189" vertical-scroll-proportion="0.32323232">
<folding>
<element signature="imports" expanded="true" />
</folding>
@@ -176,7 +174,7 @@
</entry>
<entry
file="file://$PROJECT_DIR$/channels/src/main/net/dpml/iso8583/channels/PadChannel.java"
pinned="false">
<provider selected="true" editor-type-id="text-editor">
- <state line="36" column="0" selection-start="1142"
selection-end="1142" vertical-scroll-proportion="0.52910054">
+ <state line="37" column="13" selection-start="1159"
selection-end="1159" vertical-scroll-proportion="0.39772728">
<folding>
<element signature="imports" expanded="true" />
</folding>
@@ -185,7 +183,7 @@
</entry>
<entry
file="file://$PROJECT_DIR$/channels/src/main/net/dpml/iso8583/channels/PostChannel.java"
pinned="false">
<provider selected="true" editor-type-id="text-editor">
- <state line="36" column="0" selection-start="1139"
selection-end="1139" vertical-scroll-proportion="0.52910054">
+ <state line="37" column="13" selection-start="1156"
selection-end="1156" vertical-scroll-proportion="0.39772728">
<folding>
<element signature="imports" expanded="true" />
</folding>
@@ -194,7 +192,7 @@
</entry>
<entry
file="file://$PROJECT_DIR$/channels/src/main/net/dpml/iso8583/channels/RawChannel.java"
pinned="false">
<provider selected="true" editor-type-id="text-editor">
- <state line="38" column="0" selection-start="1172"
selection-end="1172" vertical-scroll-proportion="0.26631394">
+ <state line="39" column="13" selection-start="1189"
selection-end="1189" vertical-scroll-proportion="0.32323232">
<folding>
<element signature="imports" expanded="true" />
</folding>
@@ -203,7 +201,7 @@
</entry>
<entry
file="file://$PROJECT_DIR$/channels/src/main/net/dpml/iso8583/channels/VapChannel.java"
pinned="false">
<provider selected="true" editor-type-id="text-editor">
- <state line="36" column="0" selection-start="1137"
selection-end="1137" vertical-scroll-proportion="0.52910054">
+ <state line="37" column="13" selection-start="1154"
selection-end="1154" vertical-scroll-proportion="0.39772728">
<folding>
<element signature="imports" expanded="true" />
</folding>
@@ -212,7 +210,7 @@
</entry>
<entry
file="file://$PROJECT_DIR$/channels/src/main/net/dpml/iso8583/channels/X25Channel.java"
pinned="false">
<provider selected="true" editor-type-id="text-editor">
- <state line="36" column="0" selection-start="1139"
selection-end="1139" vertical-scroll-proportion="0.52910054">
+ <state line="37" column="13" selection-start="1156"
selection-end="1156" vertical-scroll-proportion="0.39772728">
<folding>
<element signature="imports" expanded="true" />
</folding>
@@ -221,16 +219,16 @@
</entry>
<entry
file="file://$PROJECT_DIR$/channels/src/main/net/dpml/iso8583/channels/XmlChannel.java"
pinned="false">
<provider selected="true" editor-type-id="text-editor">
- <state line="36" column="0" selection-start="1138"
selection-end="1138" vertical-scroll-proportion="0.52910054">
+ <state line="37" column="13" selection-start="1155"
selection-end="1155" vertical-scroll-proportion="0.39772728">
<folding>
<element signature="imports" expanded="true" />
</folding>
</state>
</provider>
</entry>
- <entry
file="file://$PROJECT_DIR$/api/src/main/net/dpml/iso8583/data/IsoMessageFactory.java"
pinned="false">
+ <entry
file="file://$PROJECT_DIR$/channels/src/main/net/dpml/iso8583/channels/LogChannel.java"
pinned="false">
<provider selected="true" editor-type-id="text-editor">
- <state line="3" column="33" selection-start="93"
selection-end="93" vertical-scroll-proportion="0.07936508">
+ <state line="37" column="13" selection-start="1154"
selection-end="1154" vertical-scroll-proportion="0.39772728">
<folding>
<element signature="imports" expanded="true" />
</folding>
@@ -258,6 +256,8 @@
</component>
<component name="NamedScopeManager" />
<component name="PackagesPane">
+ <expanded_node url="net.dpml.iso8583.data.mti" module="mti"
type="package" />
+ <expanded_node url="" module="mti" type="module" />
<expanded_node url="" module="authorization" type="module" />
<expanded_node url="net.dpml.iso8583.data" module="api" type="package" />
<expanded_node url="net.dpml.iso8583.authorization.impl"
module="authorization" type="package" />
@@ -396,7 +396,7 @@
</component>
<component name="ToolWindowManager">
<frame x="-4" y="-6" width="1288" height="987" extended-state="6" />
- <editor active="false" />
+ <editor active="true" />
<layout>
<window_info id="CheckStyle" active="false" anchor="bottom"
auto_hide="false" internal_type="docked" type="docked" visible="false"
weight="0.3302217" order="-1" />
<window_info id="CVS" active="false" anchor="bottom" auto_hide="false"
internal_type="docked" type="docked" visible="false" weight="0.33" order="8"
/>
@@ -406,7 +406,7 @@
<window_info id="Project" active="false" anchor="left"
auto_hide="false" internal_type="docked" type="docked" visible="true"
weight="0.25" order="0" />
<window_info id="Find" active="false" anchor="bottom"
auto_hide="false" internal_type="docked" type="docked" visible="false"
weight="0.3302217" order="1" />
<window_info id="Structure" active="false" anchor="left"
auto_hide="false" internal_type="docked" type="docked" visible="false"
weight="0.24958402" order="1" />
- <window_info id="Messages" active="true" anchor="bottom"
auto_hide="false" internal_type="docked" type="docked" visible="true"
weight="0.25437573" order="8" />
+ <window_info id="Messages" active="false" anchor="bottom"
auto_hide="false" internal_type="docked" type="docked" visible="false"
weight="0.25437573" order="8" />
<window_info id="Inspection" active="false" anchor="bottom"
auto_hide="false" internal_type="docked" type="docked" visible="false"
weight="0.4" order="6" />
<window_info id="Dependency Viewer" active="false" anchor="bottom"
auto_hide="false" internal_type="docked" type="docked" visible="false"
weight="0.33" order="8" />
<window_info id="Ant Build" active="false" anchor="right"
auto_hide="false" internal_type="docked" type="docked" visible="false"
weight="0.24958402" order="1" />
@@ -490,16 +490,9 @@
<option name="FILTER_TARGETS" value="false" />
</component>
<component name="editorHistoryManager">
- <entry
file="file://$PROJECT_DIR$/channels/src/main/net/dpml/iso8583/channels/LoopbackChannel.java">
- <provider selected="true" editor-type-id="text-editor">
- <state line="28" column="13" selection-start="931"
selection-end="931" vertical-scroll-proportion="0.31746033">
- <folding />
- </state>
- </provider>
- </entry>
<entry
file="file://$PROJECT_DIR$/channels/src/main/net/dpml/iso8583/channels/AsciiChannel.java">
<provider selected="true" editor-type-id="text-editor">
- <state line="36" column="0" selection-start="1163"
selection-end="1218" vertical-scroll-proportion="0.5257353">
+ <state line="36" column="0" selection-start="1163"
selection-end="1218" vertical-scroll-proportion="0.31439394">
<folding>
<element signature="imports" expanded="true" />
</folding>
@@ -508,7 +501,7 @@
</entry>
<entry
file="file://$PROJECT_DIR$/channels/src/main/net/dpml/iso8583/channels/Base24Channel.java">
<provider selected="true" editor-type-id="text-editor">
- <state line="36" column="0" selection-start="1143"
selection-end="1143" vertical-scroll-proportion="0.27757353">
+ <state line="37" column="13" selection-start="1160"
selection-end="1160" vertical-scroll-proportion="0.39772728">
<folding>
<element signature="imports" expanded="true" />
</folding>
@@ -517,7 +510,7 @@
</entry>
<entry
file="file://$PROJECT_DIR$/channels/src/main/net/dpml/iso8583/channels/Base24TcpChannel.java">
<provider selected="true" editor-type-id="text-editor">
- <state line="36" column="0" selection-start="1151"
selection-end="1151" vertical-scroll-proportion="0.27757353">
+ <state line="37" column="13" selection-start="1168"
selection-end="1168" vertical-scroll-proportion="0.39772728">
<folding>
<element signature="imports" expanded="true" />
</folding>
@@ -526,25 +519,39 @@
</entry>
<entry
file="file://$PROJECT_DIR$/channels/src/main/net/dpml/iso8583/channels/CsChannel.java">
<provider selected="true" editor-type-id="text-editor">
- <state line="36" column="0" selection-start="1135"
selection-end="1135" vertical-scroll-proportion="0.52910054">
+ <state line="37" column="13" selection-start="1152"
selection-end="1152" vertical-scroll-proportion="0.39772728">
<folding>
<element signature="imports" expanded="true" />
</folding>
</state>
</provider>
</entry>
+ <entry
file="file://$PROJECT_DIR$/channels/src/main/net/dpml/iso8583/channels/ISOMessageImpl.java">
+ <provider selected="true" editor-type-id="text-editor">
+ <state line="24" column="13" selection-start="779"
selection-end="779" vertical-scroll-proportion="0.11363637">
+ <folding />
+ </state>
+ </provider>
+ </entry>
<entry
file="file://$PROJECT_DIR$/channels/src/main/net/dpml/iso8583/channels/LogChannel.java">
<provider selected="true" editor-type-id="text-editor">
- <state line="36" column="0" selection-start="1137"
selection-end="1137" vertical-scroll-proportion="0.52910054">
+ <state line="37" column="13" selection-start="1154"
selection-end="1154" vertical-scroll-proportion="0.39772728">
<folding>
<element signature="imports" expanded="true" />
</folding>
</state>
</provider>
</entry>
+ <entry
file="file://$PROJECT_DIR$/channels/src/main/net/dpml/iso8583/channels/LoopbackChannel.java">
+ <provider selected="true" editor-type-id="text-editor">
+ <state line="26" column="0" selection-start="866"
selection-end="866" vertical-scroll-proportion="0.18939394">
+ <folding />
+ </state>
+ </provider>
+ </entry>
<entry
file="file://$PROJECT_DIR$/channels/src/main/net/dpml/iso8583/channels/NacChannel.java">
<provider selected="true" editor-type-id="text-editor">
- <state line="38" column="0" selection-start="1172"
selection-end="1172" vertical-scroll-proportion="0.26631394">
+ <state line="39" column="13" selection-start="1189"
selection-end="1189" vertical-scroll-proportion="0.32323232">
<folding>
<element signature="imports" expanded="true" />
</folding>
@@ -553,7 +560,7 @@
</entry>
<entry
file="file://$PROJECT_DIR$/channels/src/main/net/dpml/iso8583/channels/NccChannel.java">
<provider selected="true" editor-type-id="text-editor">
- <state line="38" column="0" selection-start="1172"
selection-end="1172" vertical-scroll-proportion="0.26631394">
+ <state line="39" column="13" selection-start="1189"
selection-end="1189" vertical-scroll-proportion="0.32323232">
<folding>
<element signature="imports" expanded="true" />
</folding>
@@ -562,7 +569,7 @@
</entry>
<entry
file="file://$PROJECT_DIR$/channels/src/main/net/dpml/iso8583/channels/PadChannel.java">
<provider selected="true" editor-type-id="text-editor">
- <state line="36" column="0" selection-start="1142"
selection-end="1142" vertical-scroll-proportion="0.52910054">
+ <state line="37" column="13" selection-start="1159"
selection-end="1159" vertical-scroll-proportion="0.39772728">
<folding>
<element signature="imports" expanded="true" />
</folding>
@@ -571,7 +578,7 @@
</entry>
<entry
file="file://$PROJECT_DIR$/channels/src/main/net/dpml/iso8583/channels/PostChannel.java">
<provider selected="true" editor-type-id="text-editor">
- <state line="36" column="0" selection-start="1139"
selection-end="1139" vertical-scroll-proportion="0.52910054">
+ <state line="37" column="13" selection-start="1156"
selection-end="1156" vertical-scroll-proportion="0.39772728">
<folding>
<element signature="imports" expanded="true" />
</folding>
@@ -580,7 +587,7 @@
</entry>
<entry
file="file://$PROJECT_DIR$/channels/src/main/net/dpml/iso8583/channels/RawChannel.java">
<provider selected="true" editor-type-id="text-editor">
- <state line="38" column="0" selection-start="1172"
selection-end="1172" vertical-scroll-proportion="0.26631394">
+ <state line="39" column="13" selection-start="1189"
selection-end="1189" vertical-scroll-proportion="0.32323232">
<folding>
<element signature="imports" expanded="true" />
</folding>
@@ -589,34 +596,25 @@
</entry>
<entry
file="file://$PROJECT_DIR$/channels/src/main/net/dpml/iso8583/channels/VapChannel.java">
<provider selected="true" editor-type-id="text-editor">
- <state line="36" column="0" selection-start="1137"
selection-end="1137" vertical-scroll-proportion="0.52910054">
+ <state line="37" column="13" selection-start="1154"
selection-end="1154" vertical-scroll-proportion="0.39772728">
<folding>
<element signature="imports" expanded="true" />
</folding>
</state>
</provider>
</entry>
- <entry
file="file://$PROJECT_DIR$/channels/src/main/net/dpml/iso8583/channels/X25Channel.java">
- <provider selected="true" editor-type-id="text-editor">
- <state line="36" column="0" selection-start="1139"
selection-end="1139" vertical-scroll-proportion="0.52910054">
- <folding>
- <element signature="imports" expanded="true" />
- </folding>
- </state>
- </provider>
- </entry>
- <entry
file="file://$PROJECT_DIR$/api/src/main/net/dpml/iso8583/data/IsoMessageFactory.java">
+ <entry
file="file://$PROJECT_DIR$/channels/src/main/net/dpml/iso8583/channels/XmlChannel.java">
<provider selected="true" editor-type-id="text-editor">
- <state line="3" column="33" selection-start="93" selection-end="93"
vertical-scroll-proportion="0.07936508">
+ <state line="37" column="13" selection-start="1155"
selection-end="1155" vertical-scroll-proportion="0.39772728">
<folding>
<element signature="imports" expanded="true" />
</folding>
</state>
</provider>
</entry>
- <entry
file="file://$PROJECT_DIR$/channels/src/main/net/dpml/iso8583/channels/XmlChannel.java">
+ <entry
file="file://$PROJECT_DIR$/channels/src/main/net/dpml/iso8583/channels/X25Channel.java">
<provider selected="true" editor-type-id="text-editor">
- <state line="36" column="0" selection-start="1138"
selection-end="1138" vertical-scroll-proportion="0.52910054">
+ <state line="37" column="13" selection-start="1156"
selection-end="1156" vertical-scroll-proportion="0.39772728">
<folding>
<element signature="imports" expanded="true" />
</folding>

Modified: development/laboratory/users/niclas/iso8583/mti/mti.iml
==============================================================================
--- development/laboratory/users/niclas/iso8583/mti/mti.iml (original)
+++ development/laboratory/users/niclas/iso8583/mti/mti.iml Tue Apr 26
21:39:49 2005
@@ -15,6 +15,7 @@
<orderEntry type="library" name="Metro Public" level="application" />
<orderEntry type="module" module-name="api" />
<orderEntry type="module" module-name="elements" />
+ <orderEntry type="module" module-name="channels" />
<orderEntryProperties />
</component>
</module>

Modified:
development/laboratory/users/niclas/iso8583/mti/src/main/net/dpml/iso8583/data/mti/Mti100.java
==============================================================================
---
development/laboratory/users/niclas/iso8583/mti/src/main/net/dpml/iso8583/data/mti/Mti100.java
(original)
+++
development/laboratory/users/niclas/iso8583/mti/src/main/net/dpml/iso8583/data/mti/Mti100.java
Tue Apr 26 21:39:49 2005
@@ -49,6 +49,7 @@
import net.dpml.iso8583.data.elements.Track2Data;
import net.dpml.iso8583.data.elements.Track3Data;
import net.dpml.iso8583.data.elements.TransactionLifeCycleIdentificationData;
+import net.dpml.iso8583.channels.ISOMessageImpl;
import net.dpml.service.ServiceException;
import net.dpml.service.ServiceManager;

@@ -80,7 +81,7 @@
throws ISOException, NoSuchDataElementException
{
String mti = MTI_NO;
- ISOMessage msg = ISOMessage.factory.create( mti );
+ ISOMessage msg = new ISOMessageImpl( mti );
m_dataElementManager.lookup( PrimaryAccountNumber.class ).populate(
msg, true );
m_dataElementManager.lookup( ProcessingCode.class ).populate( msg,
true );
m_dataElementManager.lookup( AmountTransaction.class ).populate(
msg, true );

Modified:
development/laboratory/users/niclas/iso8583/mti/src/main/net/dpml/iso8583/data/mti/Mti101.java
==============================================================================
---
development/laboratory/users/niclas/iso8583/mti/src/main/net/dpml/iso8583/data/mti/Mti101.java
(original)
+++
development/laboratory/users/niclas/iso8583/mti/src/main/net/dpml/iso8583/data/mti/Mti101.java
Tue Apr 26 21:39:49 2005
@@ -49,6 +49,7 @@
import net.dpml.iso8583.data.elements.Track2Data;
import net.dpml.iso8583.data.elements.Track3Data;
import net.dpml.iso8583.data.elements.TransactionLifeCycleIdentificationData;
+import net.dpml.iso8583.channels.ISOMessageImpl;
import net.dpml.service.ServiceException;
import net.dpml.service.ServiceManager;

@@ -80,7 +81,7 @@
throws ISOException, NoSuchDataElementException
{
String mti = MTI_NO;
- ISOMessage msg = ISOMessage.factory.create( mti );
+ ISOMessage msg = new ISOMessageImpl( mti );
m_dataElementManager.lookup( PrimaryAccountNumber.class ).populate(
msg, true );
m_dataElementManager.lookup( ProcessingCode.class ).populate( msg,
true );
m_dataElementManager.lookup( AmountTransaction.class ).populate(
msg, true );

Modified:
development/laboratory/users/niclas/iso8583/mti/src/main/net/dpml/iso8583/data/mti/Mti110.java
==============================================================================
---
development/laboratory/users/niclas/iso8583/mti/src/main/net/dpml/iso8583/data/mti/Mti110.java
(original)
+++
development/laboratory/users/niclas/iso8583/mti/src/main/net/dpml/iso8583/data/mti/Mti110.java
Tue Apr 26 21:39:49 2005
@@ -45,6 +45,7 @@
import net.dpml.iso8583.data.elements.SystemsTraceAuditNumber;
import net.dpml.iso8583.data.elements.TransactionLifeCycleIdentificationData;
import net.dpml.iso8583.data.elements.TransportData;
+import net.dpml.iso8583.channels.ISOMessageImpl;
import net.dpml.service.ServiceException;
import net.dpml.service.ServiceManager;

@@ -76,7 +77,7 @@
throws ISOException, NoSuchDataElementException
{
String mti = MTI_NO;
- ISOMessage msg = ISOMessage.factory.create( mti );
+ ISOMessage msg = new ISOMessageImpl( mti );
m_dataElementManager.lookup( PrimaryAccountNumber.class ).populate(
msg, true );
m_dataElementManager.lookup( ProcessingCode.class ).populate( msg,
true );
m_dataElementManager.lookup( AmountTransaction.class ).populate(
msg, true );

Modified:
development/laboratory/users/niclas/iso8583/mti/src/main/net/dpml/iso8583/data/mti/Mti120.java
==============================================================================
---
development/laboratory/users/niclas/iso8583/mti/src/main/net/dpml/iso8583/data/mti/Mti120.java
(original)
+++
development/laboratory/users/niclas/iso8583/mti/src/main/net/dpml/iso8583/data/mti/Mti120.java
Tue Apr 26 21:39:49 2005
@@ -51,6 +51,7 @@
import net.dpml.iso8583.data.elements.Track2Data;
import net.dpml.iso8583.data.elements.Track3Data;
import net.dpml.iso8583.data.elements.TransactionLifeCycleIdentificationData;
+import net.dpml.iso8583.channels.ISOMessageImpl;
import net.dpml.service.ServiceException;
import net.dpml.service.ServiceManager;

@@ -82,7 +83,7 @@
throws ISOException, NoSuchDataElementException
{
String mti = MTI_NO;
- ISOMessage msg = ISOMessage.factory.create( mti );
+ ISOMessage msg = new ISOMessageImpl( mti );
m_dataElementManager.lookup( PrimaryAccountNumber.class ).populate(
msg, true );
m_dataElementManager.lookup( ProcessingCode.class ).populate( msg,
true );
m_dataElementManager.lookup( AmountTransaction.class ).populate(
msg, true );

Modified:
development/laboratory/users/niclas/iso8583/mti/src/main/net/dpml/iso8583/data/mti/Mti121.java
==============================================================================
---
development/laboratory/users/niclas/iso8583/mti/src/main/net/dpml/iso8583/data/mti/Mti121.java
(original)
+++
development/laboratory/users/niclas/iso8583/mti/src/main/net/dpml/iso8583/data/mti/Mti121.java
Tue Apr 26 21:39:49 2005
@@ -51,6 +51,7 @@
import net.dpml.iso8583.data.elements.Track2Data;
import net.dpml.iso8583.data.elements.Track3Data;
import net.dpml.iso8583.data.elements.TransactionLifeCycleIdentificationData;
+import net.dpml.iso8583.channels.ISOMessageImpl;
import net.dpml.service.ServiceException;
import net.dpml.service.ServiceManager;

@@ -82,7 +83,7 @@
throws ISOException, NoSuchDataElementException
{
String mti = MTI_NO;
- ISOMessage msg = ISOMessage.factory.create( mti );
+ ISOMessage msg = new ISOMessageImpl( mti );
m_dataElementManager.lookup( PrimaryAccountNumber.class ).populate(
msg, true );
m_dataElementManager.lookup( ProcessingCode.class ).populate( msg,
true );
m_dataElementManager.lookup( AmountTransaction.class ).populate(
msg, true );

Modified:
development/laboratory/users/niclas/iso8583/mti/src/main/net/dpml/iso8583/data/mti/Mti130.java
==============================================================================
---
development/laboratory/users/niclas/iso8583/mti/src/main/net/dpml/iso8583/data/mti/Mti130.java
(original)
+++
development/laboratory/users/niclas/iso8583/mti/src/main/net/dpml/iso8583/data/mti/Mti130.java
Tue Apr 26 21:39:49 2005
@@ -43,6 +43,7 @@
import net.dpml.iso8583.data.elements.SystemsTraceAuditNumber;
import net.dpml.iso8583.data.elements.TransactionLifeCycleIdentificationData;
import net.dpml.iso8583.data.elements.TransportData;
+import net.dpml.iso8583.channels.ISOMessageImpl;
import net.dpml.service.ServiceException;
import net.dpml.service.ServiceManager;

@@ -74,7 +75,7 @@
throws ISOException, NoSuchDataElementException
{
String mti = MTI_NO;
- ISOMessage msg = ISOMessage.factory.create( mti );
+ ISOMessage msg = new ISOMessageImpl( mti );
m_dataElementManager.lookup( PrimaryAccountNumber.class ).populate(
msg, true );
m_dataElementManager.lookup( ProcessingCode.class ).populate( msg,
true );
m_dataElementManager.lookup( AmountTransaction.class ).populate(
msg, true );

Modified:
development/laboratory/users/niclas/iso8583/mti/src/main/net/dpml/iso8583/data/mti/Mti140.java
==============================================================================
---
development/laboratory/users/niclas/iso8583/mti/src/main/net/dpml/iso8583/data/mti/Mti140.java
(original)
+++
development/laboratory/users/niclas/iso8583/mti/src/main/net/dpml/iso8583/data/mti/Mti140.java
Tue Apr 26 21:39:49 2005
@@ -55,6 +55,7 @@
import net.dpml.iso8583.data.elements.Track2Data;
import net.dpml.iso8583.data.elements.Track3Data;
import net.dpml.iso8583.data.elements.TransactionLifeCycleIdentificationData;
+import net.dpml.iso8583.channels.ISOMessageImpl;
import net.dpml.service.ServiceException;
import net.dpml.service.ServiceManager;

@@ -86,7 +87,7 @@
throws ISOException, NoSuchDataElementException
{
String mti = MTI_NO;
- ISOMessage msg = ISOMessage.factory.create( mti );
+ ISOMessage msg = new ISOMessageImpl( mti );
m_dataElementManager.lookup( PrimaryAccountNumber.class ).populate(
msg, true );
m_dataElementManager.lookup( ProcessingCode.class ).populate( msg,
true );
m_dataElementManager.lookup( AmountTransaction.class ).populate(
msg, true );

Modified:
development/laboratory/users/niclas/iso8583/mti/src/main/net/dpml/iso8583/data/mti/Mti150.java
==============================================================================
---
development/laboratory/users/niclas/iso8583/mti/src/main/net/dpml/iso8583/data/mti/Mti150.java
(original)
+++
development/laboratory/users/niclas/iso8583/mti/src/main/net/dpml/iso8583/data/mti/Mti150.java
Tue Apr 26 21:39:49 2005
@@ -27,6 +27,7 @@
import net.dpml.iso8583.data.elements.BatchFileTransferMessageControl;
import net.dpml.iso8583.data.elements.SystemsTraceAuditNumber;
import net.dpml.iso8583.data.elements.TransactionLifeCycleIdentificationData;
+import net.dpml.iso8583.channels.ISOMessageImpl;
import net.dpml.service.ServiceException;
import net.dpml.service.ServiceManager;

@@ -58,7 +59,7 @@
throws ISOException, NoSuchDataElementException
{
String mti = MTI_NO;
- ISOMessage msg = ISOMessage.factory.create( mti );
+ ISOMessage msg = new ISOMessageImpl( mti );
m_dataElementManager.lookup( SystemsTraceAuditNumber.class
).populate( msg, true );
m_dataElementManager.lookup(
TransactionLifeCycleIdentificationData.class ).populate( msg, true );
m_dataElementManager.lookup( BatchFileTransferMessageControl.class
).populate( msg, true );



  • svn commit: r2427 - in development/laboratory/users/niclas/iso8583: . api/src/main/net/dpml/iso8583/data channels/src/main/net/dpml/iso8583/channels mti mti/src/main/net/dpml/iso8583/data/mti, niclas, 04/26/2005

Archive powered by MHonArc 2.6.24.

Top of Page