X_COMMON.java
上传用户:xfwatch
上传日期:2020-12-14
资源大小:872k
文件大小:3k
源码类别:

中间件编程

开发平台:

Java

  1. /*
  2.  * JBoss, Home of Professional Open Source
  3.  * Copyright 2008, Red Hat, Inc., and others contributors as indicated
  4.  * by the @authors tag. All rights reserved.
  5.  * See the copyright.txt in the distribution for a
  6.  * full listing of individual contributors.
  7.  * This copyrighted material is made available to anyone wishing to use,
  8.  * modify, copy, or redistribute it subject to the terms and conditions
  9.  * of the GNU Lesser General public  License, v. 2.1.
  10.  * This program is distributed in the hope that it will be useful, but WITHOUT A
  11.  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  12.  * PARTICULAR PURPOSE.  See the GNU Lesser General public  License for more details.
  13.  * You should have received a copy of the GNU Lesser General public  License,
  14.  * v.2.1 along with this distribution; if not, write to the Free Software
  15.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  16.  * MA  02110-1301, USA.
  17.  */
  18. package org.jboss.blacktie.jatmibroker.xatmi;
  19. import java.util.ArrayList;
  20. import java.util.List;
  21. import java.util.Properties;
  22. public class X_COMMON extends Buffer {
  23. /**
  24.  * The default ID
  25.  */
  26. private static final long serialVersionUID = 1L;
  27. private static List<Class> types = new ArrayList<Class>();
  28. static {
  29. Class[] x_commonType = new Class[] { short.class, long.class,
  30. byte.class, short[].class, long[].class, byte[].class };
  31. for (int i = 0; i < x_commonType.length; i++) {
  32. types.add(x_commonType[i]);
  33. }
  34. }
  35. X_COMMON(String subtype, Properties properties) throws ConnectionException {
  36. super("X_COMMON", subtype, true, types, properties);
  37. }
  38. X_COMMON(String subtype, Properties properties, byte[] data)
  39. throws ConnectionException {
  40. super("X_COMMON", subtype, true, types, properties);
  41. deserialize(data);
  42. }
  43. public short getShort(String key) throws ConnectionException {
  44. return ((Short) getAttributeValue(key, short.class)).shortValue();
  45. }
  46. public void setShort(String key, short value) throws ConnectionException {
  47. setAttributeValue(key, short.class, value);
  48. }
  49. public long getLong(String key) throws ConnectionException {
  50. return ((Long) getAttributeValue(key, long.class)).longValue();
  51. }
  52. public void setLong(String key, long value) throws ConnectionException {
  53. setAttributeValue(key, long.class, value);
  54. }
  55. public byte getByte(String key) throws ConnectionException {
  56. return ((Byte) getAttributeValue(key, byte.class)).byteValue();
  57. }
  58. public void setByte(String key, byte value) throws ConnectionException {
  59. setAttributeValue(key, byte.class, value);
  60. }
  61. public short[] getShortArray(String key) throws ConnectionException {
  62. return (short[]) getAttributeValue(key, short[].class);
  63. }
  64. public void setShortArray(String key, short[] value)
  65. throws ConnectionException {
  66. setAttributeValue(key, short[].class, value);
  67. }
  68. public long[] getLongArray(String key) throws ConnectionException {
  69. return (long[]) getAttributeValue(key, long[].class);
  70. }
  71. public void setLongArray(String key, long[] value)
  72. throws ConnectionException {
  73. setAttributeValue(key, long[].class, value);
  74. }
  75. public byte[] getByteArray(String key) throws ConnectionException {
  76. return (byte[]) getAttributeValue(key, byte[].class);
  77. }
  78. public void setByteArray(String key, byte[] value)
  79. throws ConnectionException {
  80. setAttributeValue(key, byte[].class, value);
  81. }
  82. }