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

中间件编程

开发平台:

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.io.Serializable;
  20. /**
  21.  * This class encapsulates the response from the remote service and the return
  22.  * code
  23.  */
  24. public class Response implements Serializable {
  25. /**
  26.  * 
  27.  */
  28. private static final long serialVersionUID = 1L;
  29. /**
  30.  * The return value
  31.  */
  32. short rval;
  33. /**
  34.  * The return code
  35.  */
  36. int rcode;
  37. /**
  38.  * The flags to return
  39.  */
  40. int flags;
  41. /**
  42.  * The response from the server
  43.  */
  44. private Buffer buffer;
  45. private int len;
  46. public Response(short rval, int rcode, Buffer buffer, int len, int flags) {
  47. this.rval = rval;
  48. this.rcode = rcode;
  49. this.buffer = buffer;
  50. this.len = len;
  51. this.flags = flags;
  52. }
  53. /**
  54.  * Get the return value
  55.  * 
  56.  * @return The return value
  57.  */
  58. public short getRval() {
  59. return rval;
  60. }
  61. /**
  62.  * Get the return code
  63.  * 
  64.  * @return The return code
  65.  */
  66. public int getRcode() {
  67. return rcode;
  68. }
  69. public int getFlags() {
  70. return flags;
  71. }
  72. public Buffer getBuffer() {
  73. return buffer;
  74. }
  75. public int getLen() {
  76. return len;
  77. }
  78. }