1 /***** Copyright (c) 1999 Object Management Group. Unlimited rights to 2 duplicate and use this code are hereby granted provided that this 3 copyright notice is included. 4 *****/ 5 6 package org.omg.CORBA; 7 8 /** 9 * @deprecated Principal 10 */ 11 public class Principal { 12 13 /** 14 * @deprecated Deprecated by CORBA 2.2 15 */ 16 public byte[] name() { 17 throw new org.omg.CORBA.NO_IMPLEMENT(); 18 } 19 /** 20 * @deprecated Deprecated by CORBA 2.2 21 */ 22 public void name(byte[] name) { 23 throw new org.omg.CORBA.NO_IMPLEMENT(); 24 } 25 }