Skip to Content.
Sympa Menu

notify-dpml - svn commit: r2058 - development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging

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: r2058 - development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging
  • Date: Sun, 13 Mar 2005 20:45:58 -0500

Author: niclas AT hedhman.org
Date: Sun Mar 13 20:45:58 2005
New Revision: 2058

Added:

development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/ISO87APackager.java
(contents, props changed)

development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/ISO87APackagerBBitmap.java
(contents, props changed)

development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/ISO87BPackager.java
(contents, props changed)

development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/ISO93APackager.java
(contents, props changed)

development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/ISO93BPackager.java
(contents, props changed)

development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/ISOBaseValidatingPackager.java
(contents, props changed)

development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/LogPackager.java
(contents, props changed)

development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/PostPackager.java
(contents, props changed)

development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/VapSmsPackager.java
(contents, props changed)

development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/VapVipPackager.java
(contents, props changed)

development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/X92Packager.java
(contents, props changed)

development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/XmlPackager.java
(contents, props changed)
Log:
More packagers wrapped.

Added:
development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/ISO87APackager.java
==============================================================================
--- (empty file)
+++
development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/ISO87APackager.java
Sun Mar 13 20:45:58 2005
@@ -0,0 +1,40 @@
+/*
+* 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.parts.packaging;
+
+import net.dpml.logging.Logger;
+
+import org.jpos.iso.ISOPackager;
+
+/** Metro Wrapper for the ISO87APackager in JPos.
+ *
+ * @metro.component name="ISO87A-packager" lifestyle="singleton"
+ * @metro.service type="org.jpos.iso.ISOPackager"
+ */
+public class ISO87APackager extends org.jpos.iso.packager.ISO87APackager
+{
+ /**
+ * @metro.logger name="iso87a"
+ */
+ public ISO87APackager( Logger logger )
+ {
+ super();
+ }
+}
+

Added:
development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/ISO87APackagerBBitmap.java
==============================================================================
--- (empty file)
+++
development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/ISO87APackagerBBitmap.java
Sun Mar 13 20:45:58 2005
@@ -0,0 +1,37 @@
+/*
+* 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.parts.packaging;
+
+import net.dpml.logging.Logger;
+
+import org.jpos.iso.ISOPackager;
+
+/** Metro Wrapper for the ISO87APackagerBBitmap in JPos.
+ *
+ * @metro.component name="ISO87APackagerBBitmap-packager"
lifestyle="singleton"
+ * @metro.service type="org.jpos.iso.ISOPackager"
+ */
+public class ISO87APackagerBBitmap extends
org.jpos.iso.packager.ISO87APackagerBBitmap
+{
+ public ISO87APackagerBBitmap( Logger logger )
+ {
+ super();
+ }
+}
+

Added:
development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/ISO87BPackager.java
==============================================================================
--- (empty file)
+++
development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/ISO87BPackager.java
Sun Mar 13 20:45:58 2005
@@ -0,0 +1,40 @@
+/*
+* 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.parts.packaging;
+
+import net.dpml.logging.Logger;
+
+import org.jpos.iso.ISOPackager;
+
+/** Metro Wrapper for the ISO87BPackager in JPos.
+ *
+ * @metro.component name="ISO87B-packager" lifestyle="singleton"
+ * @metro.service type="org.jpos.iso.ISOPackager"
+ */
+public class ISO87BPackager extends org.jpos.iso.packager.ISO87BPackager
+{
+ /**
+ * @metro.logger name="iso87b"
+ */
+ public ISO87BPackager( Logger logger )
+ {
+ super();
+ }
+}
+

Added:
development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/ISO93APackager.java
==============================================================================
--- (empty file)
+++
development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/ISO93APackager.java
Sun Mar 13 20:45:58 2005
@@ -0,0 +1,40 @@
+/*
+* 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.parts.packaging;
+
+import net.dpml.logging.Logger;
+
+import org.jpos.iso.ISOPackager;
+
+/** Metro Wrapper for the ISO93APackager in JPos.
+ *
+ * @metro.component name="ISO93A-packager" lifestyle="singleton"
+ * @metro.service type="org.jpos.iso.ISOPackager"
+ */
+public class ISO93APackager extends org.jpos.iso.packager.ISO93APackager
+{
+ /**
+ * @metro.logger name="iso93a"
+ */
+ public ISO93APackager( Logger logger )
+ {
+ super();
+ }
+}
+

Added:
development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/ISO93BPackager.java
==============================================================================
--- (empty file)
+++
development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/ISO93BPackager.java
Sun Mar 13 20:45:58 2005
@@ -0,0 +1,40 @@
+/*
+* 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.parts.packaging;
+
+import net.dpml.logging.Logger;
+
+import org.jpos.iso.ISOPackager;
+
+/** Metro Wrapper for the ISO93BPackager in JPos.
+ *
+ * @metro.component name="ISO93B-packager" lifestyle="singleton"
+ * @metro.service type="org.jpos.iso.ISOPackager"
+ */
+public class ISO93BPackager extends org.jpos.iso.packager.ISO93BPackager
+{
+ /**
+ * @metro.logger name="iso93b"
+ */
+ public ISO93BPackager( Logger logger )
+ {
+ super();
+ }
+}
+

Added:
development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/ISOBaseValidatingPackager.java
==============================================================================
--- (empty file)
+++
development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/ISOBaseValidatingPackager.java
Sun Mar 13 20:45:58 2005
@@ -0,0 +1,37 @@
+/*
+* 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.parts.packaging;
+
+import net.dpml.logging.Logger;
+
+import org.jpos.iso.ISOPackager;
+
+/** Metro Wrapper for the ISOBaseValidatingPackager in JPos.
+ *
+ * @metro.component name="ISOBase-validating-packager" lifestyle="singleton"
+ * @metro.service type="org.jpos.iso.ISOPackager"
+ */
+public class ISOBaseValidatingPackager extends
org.jpos.iso.packager.ISOBaseValidatingPackager
+{
+ public ISOBaseValidatingPackager( Logger logger )
+ {
+ super();
+ }
+}
+

Added:
development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/LogPackager.java
==============================================================================
--- (empty file)
+++
development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/LogPackager.java
Sun Mar 13 20:45:58 2005
@@ -0,0 +1,42 @@
+/*
+* 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.parts.packaging;
+
+import net.dpml.logging.Logger;
+
+import org.jpos.iso.ISOException;
+import org.jpos.iso.ISOPackager;
+
+/** Metro Wrapper for the LogPackager in JPos.
+ *
+ * @metro.component name="log-packager" lifestyle="singleton"
+ * @metro.service type="org.jpos.iso.ISOPackager"
+ */
+public class LogPackager extends org.jpos.iso.packager.LogPackager
+{
+ /**
+ * @metro.logger name="log"
+ */
+ public LogPackager( Logger logger )
+ throws ISOException
+ {
+ super();
+ }
+}
+

Added:
development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/PostPackager.java
==============================================================================
--- (empty file)
+++
development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/PostPackager.java
Sun Mar 13 20:45:58 2005
@@ -0,0 +1,40 @@
+/*
+* 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.parts.packaging;
+
+import net.dpml.logging.Logger;
+
+import org.jpos.iso.ISOPackager;
+
+/** Metro Wrapper for the PostPackager in JPos.
+ *
+ * @metro.component name="post-packager" lifestyle="singleton"
+ * @metro.service type="org.jpos.iso.ISOPackager"
+ */
+public class PostPackager extends org.jpos.iso.packager.PostPackager
+{
+ /**
+ * @metro.logger name="post"
+ */
+ public PostPackager( Logger logger )
+ {
+ super();
+ }
+}
+

Added:
development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/VapSmsPackager.java
==============================================================================
--- (empty file)
+++
development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/VapSmsPackager.java
Sun Mar 13 20:45:58 2005
@@ -0,0 +1,40 @@
+/*
+* 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.parts.packaging;
+
+import net.dpml.logging.Logger;
+
+import org.jpos.iso.ISOPackager;
+
+/** Metro Wrapper for the VAPSMSPackager in JPos.
+ *
+ * @metro.component name="vap-sms-packager" lifestyle="singleton"
+ * @metro.service type="org.jpos.iso.ISOPackager"
+ */
+public class VapSmsPackager extends org.jpos.iso.packager.VAPSMSPackager
+{
+ /**
+ * @metro.logger name="vap-sms"
+ */
+ public VapSmsPackager( Logger logger )
+ {
+ super();
+ }
+}
+

Added:
development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/VapVipPackager.java
==============================================================================
--- (empty file)
+++
development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/VapVipPackager.java
Sun Mar 13 20:45:58 2005
@@ -0,0 +1,40 @@
+/*
+* 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.parts.packaging;
+
+import net.dpml.logging.Logger;
+
+import org.jpos.iso.ISOPackager;
+
+/** Metro Wrapper for the VAPVIPPackager in JPos.
+ *
+ * @metro.component name="vap-vip-packager" lifestyle="singleton"
+ * @metro.service type="org.jpos.iso.ISOPackager"
+ */
+public class VapVipPackager extends org.jpos.iso.packager.VAPVIPPackager
+{
+ /**
+ * @metro.logger name="vap-vip"
+ */
+ public VapVipPackager( Logger logger )
+ {
+ super();
+ }
+}
+

Added:
development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/X92Packager.java
==============================================================================
--- (empty file)
+++
development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/X92Packager.java
Sun Mar 13 20:45:58 2005
@@ -0,0 +1,40 @@
+/*
+* 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.parts.packaging;
+
+import net.dpml.logging.Logger;
+
+import org.jpos.iso.ISOPackager;
+
+/** Metro Wrapper for the X92Packager in JPos.
+ *
+ * @metro.component name="x92-packager" lifestyle="singleton"
+ * @metro.service type="org.jpos.iso.ISOPackager"
+ */
+public class X92Packager extends org.jpos.iso.packager.X92Packager
+{
+ /**
+ * @metro.logger name="x92"
+ */
+ public X92Packager( Logger logger )
+ {
+ super();
+ }
+}
+

Added:
development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/XmlPackager.java
==============================================================================
--- (empty file)
+++
development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging/XmlPackager.java
Sun Mar 13 20:45:58 2005
@@ -0,0 +1,42 @@
+/*
+* 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.parts.packaging;
+
+import net.dpml.logging.Logger;
+
+import org.jpos.iso.ISOException;
+import org.jpos.iso.ISOPackager;
+
+/** Metro Wrapper for the XMLPackager in JPos.
+ *
+ * @metro.component name="base1-packager" lifestyle="singleton"
+ * @metro.service type="org.jpos.iso.ISOPackager"
+ */
+public class XmlPackager extends org.jpos.iso.packager.XMLPackager
+{
+ /**
+ * @metro.logger name="xml"
+ */
+ public XmlPackager( Logger logger )
+ throws ISOException
+ {
+ super();
+ }
+}
+



  • svn commit: r2058 - development/planet/users/niclas/iso8583/channels/parts/src/main/net/dpml/iso8583/parts/packaging, niclas, 03/13/2005

Archive powered by MHonArc 2.6.24.

Top of Page