Package org.omg.CORBA

Examples of org.omg.CORBA.OBJECT_NOT_EXIST


    private void checkDestroyStatus() throws OBJECT_NOT_EXIST
    {
        if (!disposed_.compareAndSet(false, true))
        {
            throw new OBJECT_NOT_EXIST();
        }
    }
View Full Code Here


    {
        if (!destroyed_.compareAndSet(false, true))
        {
            logger_.error("Already destroyed");

            throw new OBJECT_NOT_EXIST();
        }
    }
View Full Code Here

                byte[] poaObjectId,
                POA poa,
                String operation,
                CookieHolder cookie)
        {
            throw new OBJECT_NOT_EXIST();
        }
View Full Code Here

                element.destroy();
            }
        }
        else
        {
            throw new OBJECT_NOT_EXIST();
        }
    }
View Full Code Here

   protected void checkDestroyed ()
   {
      if (anyRepresentation == null && typeCode == null)
      {
         throw new OBJECT_NOT_EXIST ();
      }
   }
View Full Code Here

    ///////////////////////////////////////////////////////////
   
    public static final int ORBINITINFO_INVALID = SUNVMCID.value + 801 ;
   
    public OBJECT_NOT_EXIST orbinitinfoInvalid( CompletionStatus cs, Throwable t ) {
        OBJECT_NOT_EXIST exc = new OBJECT_NOT_EXIST( ORBINITINFO_INVALID, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
       
        if (logger.isLoggable( Level.FINE )) {
            Object[] parameters = null ;
            doLog( Level.FINE, "INTERCEPTORS.orbinitinfoInvalid",
                parameters, InterceptorsSystemException.class, exc ) ;
View Full Code Here

    ///////////////////////////////////////////////////////////
   
    public static final int UNREGISTERED_VALUE_AS_OBJREF = OMGVMCID.value + 1 ;
   
    public OBJECT_NOT_EXIST unregisteredValueAsObjref( CompletionStatus cs, Throwable t ) {
        OBJECT_NOT_EXIST exc = new OBJECT_NOT_EXIST( UNREGISTERED_VALUE_AS_OBJREF, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
       
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "OMG.unregisteredValueAsObjref",
                parameters, OMGSystemException.class, exc ) ;
View Full Code Here

    }
   
    public static final int NO_OBJECT_ADAPTOR = OMGVMCID.value + 2 ;
   
    public OBJECT_NOT_EXIST noObjectAdaptor( CompletionStatus cs, Throwable t ) {
        OBJECT_NOT_EXIST exc = new OBJECT_NOT_EXIST( NO_OBJECT_ADAPTOR, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
       
        if (logger.isLoggable( Level.FINE )) {
            Object[] parameters = null ;
            doLog( Level.FINE, "OMG.noObjectAdaptor",
                parameters, OMGSystemException.class, exc ) ;
View Full Code Here

    }
   
    public static final int BIO_NOT_AVAILABLE = OMGVMCID.value + 3 ;
   
    public OBJECT_NOT_EXIST bioNotAvailable( CompletionStatus cs, Throwable t ) {
        OBJECT_NOT_EXIST exc = new OBJECT_NOT_EXIST( BIO_NOT_AVAILABLE, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
       
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "OMG.bioNotAvailable",
                parameters, OMGSystemException.class, exc ) ;
View Full Code Here

    }
   
    public static final int OBJECT_ADAPTER_INACTIVE = OMGVMCID.value + 4 ;
   
    public OBJECT_NOT_EXIST objectAdapterInactive( CompletionStatus cs, Throwable t ) {
        OBJECT_NOT_EXIST exc = new OBJECT_NOT_EXIST( OBJECT_ADAPTER_INACTIVE, cs ) ;
        if (t != null)
            exc.initCause( t ) ;
       
        if (logger.isLoggable( Level.WARNING )) {
            Object[] parameters = null ;
            doLog( Level.WARNING, "OMG.objectAdapterInactive",
                parameters, OMGSystemException.class, exc ) ;
View Full Code Here

TOP

Related Classes of org.omg.CORBA.OBJECT_NOT_EXIST

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.