_PolicyStub.java 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. /* _PolicyStub.java --
  2. Copyright (C) 2005, 2006 Free Software Foundation, Inc.
  3. This file is part of GNU Classpath.
  4. GNU Classpath is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2, or (at your option)
  7. any later version.
  8. GNU Classpath is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with GNU Classpath; see the file COPYING. If not, write to the
  14. Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  15. 02110-1301 USA.
  16. Linking this library statically or dynamically with other modules is
  17. making a combined work based on this library. Thus, the terms and
  18. conditions of the GNU General Public License cover the whole
  19. combination.
  20. As a special exception, the copyright holders of this library give you
  21. permission to link this library with independent modules to produce an
  22. executable, regardless of the license terms of these independent
  23. modules, and to copy and distribute the resulting executable under
  24. terms of your choice, provided that you also meet, for each linked
  25. independent module, the terms and conditions of the license of that
  26. module. An independent module is a module which is not derived from
  27. or based on this library. If you modify this library, you may extend
  28. this exception to your version of the library, but you are not
  29. obligated to do so. If you do not wish to do so, delete this
  30. exception statement from your version. */
  31. package org.omg.CORBA;
  32. import org.omg.CORBA.MARSHAL;
  33. import org.omg.CORBA.portable.ApplicationException;
  34. import org.omg.CORBA.portable.Delegate;
  35. import org.omg.CORBA.portable.InputStream;
  36. import org.omg.CORBA.portable.ObjectImpl;
  37. import org.omg.CORBA.portable.OutputStream;
  38. import org.omg.CORBA.portable.RemarshalException;
  39. import java.io.Serializable;
  40. /**
  41. * The Policy stub (proxy), used on the client side.
  42. * The {@link Policy} methods contain the code for remote
  43. * invocaton.
  44. *
  45. * @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
  46. */
  47. public class _PolicyStub
  48. extends ObjectImpl
  49. implements Policy, Serializable
  50. {
  51. /**
  52. * Use serialVersionUID (v1.4) for interoperability.
  53. */
  54. private static final long serialVersionUID = 2453656196708903849L;
  55. /**
  56. * Create the Policy stub. To get the stub working,
  57. * you must later set the delegate with
  58. * {@link ObjectImpl#_set_delegate(Delegate)}.
  59. */
  60. public _PolicyStub()
  61. {
  62. }
  63. /**
  64. * Create the naming context stub with the given delegate.
  65. */
  66. public _PolicyStub(Delegate delegate)
  67. {
  68. _set_delegate(delegate);
  69. }
  70. /**
  71. * Return the array of repository ids for this object.
  72. */
  73. public String[] _ids()
  74. {
  75. return new String[] { PolicyHelper.id() };
  76. }
  77. /** {@inheritDoc} */
  78. public void destroy()
  79. {
  80. InputStream input = null;
  81. try
  82. {
  83. OutputStream output = _request("destroy", true);
  84. input = _invoke(output);
  85. }
  86. catch (ApplicationException ex)
  87. {
  88. input = ex.getInputStream();
  89. String id = ex.getId();
  90. throw new MARSHAL(id);
  91. }
  92. catch (RemarshalException remarsh)
  93. {
  94. destroy();
  95. }
  96. finally
  97. {
  98. _releaseReply(input);
  99. }
  100. }
  101. /** {@inheritDoc} */
  102. public Policy copy()
  103. {
  104. InputStream input = null;
  105. try
  106. {
  107. OutputStream output = _request("copy", true);
  108. input = _invoke(output);
  109. return PolicyHelper.read(input);
  110. }
  111. catch (ApplicationException ex)
  112. {
  113. input = ex.getInputStream();
  114. String id = ex.getId();
  115. throw new MARSHAL(id);
  116. }
  117. catch (RemarshalException remarsh)
  118. {
  119. return copy();
  120. }
  121. finally
  122. {
  123. _releaseReply(input);
  124. }
  125. }
  126. /** {@inheritDoc} */
  127. public int policy_type()
  128. {
  129. InputStream input = null;
  130. try
  131. {
  132. OutputStream output = _request("policy_type", true);
  133. input = _invoke(output);
  134. int returns = input.read_long();
  135. return returns;
  136. }
  137. catch (ApplicationException ex)
  138. {
  139. input = ex.getInputStream();
  140. String id = ex.getId();
  141. throw new MARSHAL(id);
  142. }
  143. catch (RemarshalException remarsh)
  144. {
  145. return policy_type();
  146. }
  147. finally
  148. {
  149. _releaseReply(input);
  150. }
  151. }
  152. }