1. /*
  2. * @(#)CancelRequestMessage.java 1.9 03/12/19
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package com.sun.corba.se.impl.protocol.giopmsgheaders;
  8. /**
  9. * This interface captures the CancelRequestMessage contract.
  10. *
  11. * @author Ram Jeyaraman 05/14/2000
  12. * @version 1.0
  13. */
  14. public interface CancelRequestMessage extends Message {
  15. int CANCEL_REQ_MSG_SIZE = 4;
  16. int getRequestId();
  17. }