ObjectId.java revision 608:7e06bf1dcb09
1132718Skan/*
2169689Skan * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
3132718Skan * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4132718Skan *
5132718Skan * This code is free software; you can redistribute it and/or modify it
6132718Skan * under the terms of the GNU General Public License version 2 only, as
7132718Skan * published by the Free Software Foundation.  Oracle designates this
8132718Skan * particular file as subject to the "Classpath" exception as provided
9132718Skan * by Oracle in the LICENSE file that accompanied this code.
10132718Skan *
11132718Skan * This code is distributed in the hope that it will be useful, but WITHOUT
12132718Skan * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13132718Skan * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14132718Skan * version 2 for more details (a copy is included in the LICENSE file that
15132718Skan * accompanied this code).
16132718Skan *
17132718Skan * You should have received a copy of the GNU General Public License version
18132718Skan * 2 along with this work; if not, write to the Free Software Foundation,
19169689Skan * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20169689Skan *
21132718Skan * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22132718Skan * or visit www.oracle.com if you need additional information or have any
23132718Skan * questions.
24132718Skan */
25132718Skan
26132718Skanpackage com.sun.corba.se.spi.ior;
27132718Skan
28132718Skan/**
29132718Skan * @author Ken Cavanaugh
30132718Skan */
31132718Skanpublic interface ObjectId extends Writeable
32132718Skan{
33132718Skan    public byte[] getId() ;
34169689Skan}
35132718Skan