01: /***** Copyright (c) 1999 Object Management Group. Unlimited rights to
02: duplicate and use this code are hereby granted provided that this
03: copyright notice is included.
04: *****/package org.omg.CORBA;
05:
06: /**
07: * @deprecated Principal
08: */
09: public class Principal {
10:
11: /**
12: * @deprecated Deprecated by CORBA 2.2
13: */
14: public byte[] name() {
15: throw new org.omg.CORBA.NO_IMPLEMENT();
16: }
17:
18: /**
19: * @deprecated Deprecated by CORBA 2.2
20: */
21: public void name(byte[] name) {
22: throw new org.omg.CORBA.NO_IMPLEMENT();
23: }
24: }
|