001 /***** Copyright (c) 1999 Object Management Group. Unlimited rights to 002 duplicate and use this code are hereby granted provided that this 003 copyright notice is included. 004 *****/ 005 006 package org.omg.CORBA; 007 008 /** 009 * @deprecated Principal 010 */ 011 public class Principal { 012 013 /** 014 * @deprecated Deprecated by CORBA 2.2 015 */ 016 public byte[] name() { 017 throw new org.omg.CORBA.NO_IMPLEMENT(); 018 } 019 /** 020 * @deprecated Deprecated by CORBA 2.2 021 */ 022 public void name(byte[] name) { 023 throw new org.omg.CORBA.NO_IMPLEMENT(); 024 } 025 }