本文整理汇总了Java中com.sun.corba.se.impl.naming.cosnaming.NamingContextDataStore类的典型用法代码示例。如果您正苦于以下问题:Java NamingContextDataStore类的具体用法?Java NamingContextDataStore怎么用?Java NamingContextDataStore使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
NamingContextDataStore类属于com.sun.corba.se.impl.naming.cosnaming包,在下文中一共展示了NamingContextDataStore类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: list
import com.sun.corba.se.impl.naming.cosnaming.NamingContextDataStore; //导入依赖的package包/类
/**
* List the contents of this NamingContest. A sequence of bindings
* is returned (a BindingList) containing up to the number of requested
* bindings, and a BindingIterator object reference is returned for
* iterating over the remaining bindings.
* @param how_many The number of requested bindings in the BindingList.
* @param bl The BindingList as an out parameter.
* @param bi The BindingIterator as an out parameter.
* @exception org.omg.CORBA.SystemException One of a fixed set of CORBA
* system exceptions.
* @see BindingListHolder
* @see BindingIteratorImpl
*/
public void list(int how_many, BindingListHolder bl,
BindingIteratorHolder bi)
{
// List actually generates the list
NamingContextDataStore impl = (NamingContextDataStore)this;
synchronized (impl) {
impl.List(how_many,bl,bi);
}
if( readLogger.isLoggable( Level.FINE ) && (bl.value != null )) {
// isLoggable call to make sure that we save some precious
// processor cycles, if there is no need to log.
readLogger.fine ( LogKeywords.NAMING_LIST_SUCCESS +
"list(" + how_many + ") -> bindings[" + bl.value.length +
"] + iterator: " + bi.value);
}
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:30,代码来源:NamingContextImpl.java
示例2: new_context
import com.sun.corba.se.impl.naming.cosnaming.NamingContextDataStore; //导入依赖的package包/类
/**
* Create a NamingContext object and return its object reference.
* @return an object reference for a new NamingContext object implemented
* by this Name Server.
* @exception org.omg.CORBA.SystemException One of a fixed set of CORBA
* system exceptions.
*/
public synchronized NamingContext new_context()
{
// Create actually creates a new naming context
lifecycleLogger.fine( "Creating New Naming Context " );
NamingContextDataStore impl = (NamingContextDataStore)this;
synchronized (impl) {
NamingContext nctx = impl.NewContext();
if( nctx != null ) {
lifecycleLogger.fine( LogKeywords.LIFECYCLE_CREATE_SUCCESS );
} else {
// If naming context is null, then that must be a serious
// error.
lifecycleLogger.severe ( LogKeywords.LIFECYCLE_CREATE_FAILURE );
}
return nctx;
}
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:25,代码来源:NamingContextImpl.java
示例3: destroy
import com.sun.corba.se.impl.naming.cosnaming.NamingContextDataStore; //导入依赖的package包/类
/**
* Destroy this NamingContext object. If this NamingContext contains
* no bindings, the NamingContext is deleted.
* @exception org.omg.CosNaming.NamingContextPackage.NotEmpty This
* NamingContext is not empty (i.e., contains bindings).
* @exception org.omg.CORBA.SystemException One of a fixed set of CORBA
* system exceptions.
*/
public void destroy()
throws org.omg.CosNaming.NamingContextPackage.NotEmpty
{
lifecycleLogger.fine( "Destroying Naming Context " );
NamingContextDataStore impl = (NamingContextDataStore)this;
synchronized (impl) {
if (impl.IsEmpty() == true) {
// The context is empty so it can be destroyed
impl.Destroy();
lifecycleLogger.fine ( LogKeywords.LIFECYCLE_DESTROY_SUCCESS );
}
else {
// This context is not empty!
// Not a fatal error, warning should do.
lifecycleLogger.warning( LogKeywords.LIFECYCLE_DESTROY_FAILURE +
" NamingContext children are not destroyed still.." );
throw new NotEmpty();
}
}
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:29,代码来源:NamingContextImpl.java
示例4: to_string
import com.sun.corba.se.impl.naming.cosnaming.NamingContextDataStore; //导入依赖的package包/类
/**
* This operation creates a stringified name from the array of Name
* components.
* @param n Name of the object <p>
* @exception org.omg.CosNaming.NamingContextExtPackage.InvalidName
* Indicates the name does not identify a binding.<p>
*
*/
public String to_string(org.omg.CosNaming.NameComponent[] n)
throws org.omg.CosNaming.NamingContextPackage.InvalidName
{
// Name valid?
if ( (n == null ) || (n.length == 0) )
{
throw new InvalidName();
}
NamingContextDataStore impl = (NamingContextDataStore)this;
String theStringifiedName = insImpl.convertToString( n );
if( theStringifiedName == null )
{
throw new InvalidName();
}
return theStringifiedName;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:28,代码来源:NamingContextImpl.java
示例5: resolve_str
import com.sun.corba.se.impl.naming.cosnaming.NamingContextDataStore; //导入依赖的package包/类
/**
* This operation resolves the Stringified name into the object
* reference.
* @param sn Stringified Name of the object <p>
* @exception org.omg.CosNaming.NamingContextPackage.NotFound
* Indicates there is no object reference for the given name. <p>
* @exception org.omg.CosNaming.NamingContextPackage.CannotProceed
* Indicates that the given compound name is incorrect <p>
* @exception org.omg.CosNaming.NamingContextExtPackage.InvalidName
* Indicates the name does not identify a binding.<p>
* @exception org.omg.CosNaming.NamingContextPackage.AlreadyBound
* Indicates the name is already bound.<p>
*
*/
public org.omg.CORBA.Object resolve_str(String sn)
throws org.omg.CosNaming.NamingContextPackage.NotFound,
org.omg.CosNaming.NamingContextPackage.CannotProceed,
org.omg.CosNaming.NamingContextPackage.InvalidName
{
org.omg.CORBA.Object theObject = null;
// Name valid?
if ( (sn == null ) || (sn.length() == 0) )
{
throw new InvalidName();
}
NamingContextDataStore impl = (NamingContextDataStore)this;
org.omg.CosNaming.NameComponent[] theNameComponents =
insImpl.convertToNameComponent( sn );
if( ( theNameComponents == null ) || (theNameComponents.length == 0 ) )
{
throw new InvalidName();
}
theObject = resolve( theNameComponents );
return theObject;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:37,代码来源:NamingContextImpl.java
示例6: destroy
import com.sun.corba.se.impl.naming.cosnaming.NamingContextDataStore; //导入依赖的package包/类
/**
* Destroy this NamingContext object. If this NamingContext contains
* no bindings, the NamingContext is deleted.
* @exception org.omg.CosNaming.NamingContextPackage.NotEmpty This NamingContext
* is not empty (i.e., contains bindings).
* @exception org.omg.CORBA.SystemException One of a fixed set of CORBA system exceptions.
*/
public void destroy()
throws org.omg.CosNaming.NamingContextPackage.NotEmpty
{
if (debug)
dprint("destroy ");
NamingContextDataStore impl = (NamingContextDataStore)this;
synchronized (impl) {
if (impl.IsEmpty() == true)
// The context is empty so it can be destroyed
impl.Destroy();
else
// This context is not empty!
throw new org.omg.CosNaming.NamingContextPackage.NotEmpty();
}
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:23,代码来源:NamingContextImpl.java
示例7: to_string
import com.sun.corba.se.impl.naming.cosnaming.NamingContextDataStore; //导入依赖的package包/类
/**
* This operation creates a stringified name from the array of Name
* components.
* @param n Name of the object
* @exception org.omg.CosNaming.NamingContextExtPackage.InvalidName
* Indicates the name does not identify a binding.
*/
public String to_string(org.omg.CosNaming.NameComponent[] n)
throws org.omg.CosNaming.NamingContextPackage.InvalidName
{
// Name valid?
if ( (n == null ) || (n.length == 0) )
{
throw new InvalidName();
}
NamingContextDataStore impl = (NamingContextDataStore)this;
String theStringifiedName = insImpl.convertToString( n );
if( theStringifiedName == null )
{
throw new InvalidName();
}
return theStringifiedName;
}
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:27,代码来源:NamingContextImpl.java
示例8: resolve_str
import com.sun.corba.se.impl.naming.cosnaming.NamingContextDataStore; //导入依赖的package包/类
/**
* This operation resolves the Stringified name into the object
* reference.
* @param sn Stringified Name of the object
* @exception org.omg.CosNaming.NamingContextPackage.NotFound
* Indicates there is no object reference for the given name.
* @exception org.omg.CosNaming.NamingContextPackage.CannotProceed
* Indicates that the given compound name is incorrect
* @exception org.omg.CosNaming.NamingContextExtPackage.InvalidName
* Indicates the name does not identify a binding.
* @exception org.omg.CosNaming.NamingContextPackage.AlreadyBound
* Indicates the name is already bound.
*
*/
public org.omg.CORBA.Object resolve_str(String sn)
throws org.omg.CosNaming.NamingContextPackage.NotFound,
org.omg.CosNaming.NamingContextPackage.CannotProceed,
org.omg.CosNaming.NamingContextPackage.InvalidName
{
org.omg.CORBA.Object theObject = null;
// Name valid?
if ( (sn == null ) || (sn.length() == 0) )
{
throw new InvalidName();
}
NamingContextDataStore impl = (NamingContextDataStore)this;
org.omg.CosNaming.NameComponent[] theNameComponents =
insImpl.convertToNameComponent( sn );
if( ( theNameComponents == null ) || (theNameComponents.length == 0 ) )
{
throw new InvalidName();
}
theObject = resolve( theNameComponents );
return theObject;
}
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:37,代码来源:NamingContextImpl.java
注:本文中的com.sun.corba.se.impl.naming.cosnaming.NamingContextDataStore类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论