You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
714 B
48 lines
714 B
/*
|
|
* Copyright (c) 1997, 2004, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package org.omg.CORBA;
|
|
|
|
import org.omg.CORBA.portable.ObjectImpl;
|
|
|
|
/**
|
|
* @deprecated org.omg.CORBA.DynamicImplementation
|
|
*/
|
|
@Deprecated
|
|
public class DynamicImplementation extends org.omg.CORBA.portable.ObjectImpl {
|
|
|
|
/**
|
|
* @deprecated Deprecated by Portable Object Adapter
|
|
*/
|
|
@Deprecated
|
|
public void invoke(ServerRequest request) {
|
|
throw new org.omg.CORBA.NO_IMPLEMENT();
|
|
}
|
|
|
|
public String[] _ids() {
|
|
throw new org.omg.CORBA.NO_IMPLEMENT();
|
|
}
|
|
}
|