当前位置: 首页>>代码示例>>Java>>正文


Java IdAssignmentPolicyValue类代码示例

本文整理汇总了Java中org.omg.PortableServer.IdAssignmentPolicyValue的典型用法代码示例。如果您正苦于以下问题:Java IdAssignmentPolicyValue类的具体用法?Java IdAssignmentPolicyValue怎么用?Java IdAssignmentPolicyValue使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


IdAssignmentPolicyValue类属于org.omg.PortableServer包,在下文中一共展示了IdAssignmentPolicyValue类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: createbiPOA

import org.omg.PortableServer.IdAssignmentPolicyValue; //导入依赖的package包/类
private synchronized void createbiPOA( ) {
    if( biPOA != null ) {
        return;
    }
    try {
        POA rootPOA = (POA) orb.resolve_initial_references(
            ORBConstants.ROOT_POA_NAME );
        rootPOA.the_POAManager().activate( );

        int i = 0;
        Policy[] poaPolicy = new Policy[3];
        poaPolicy[i++] = rootPOA.create_lifespan_policy(
            LifespanPolicyValue.TRANSIENT);
        poaPolicy[i++] = rootPOA.create_id_assignment_policy(
            IdAssignmentPolicyValue.SYSTEM_ID);
        poaPolicy[i++] = rootPOA.create_servant_retention_policy(
            ServantRetentionPolicyValue.RETAIN);
        biPOA = rootPOA.create_POA("BindingIteratorPOA", null, poaPolicy );
        biPOA.the_POAManager().activate( );
    } catch( Exception e ) {
        throw readWrapper.namingCtxBindingIteratorCreate( e ) ;
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:24,代码来源:NamingContextImpl.java

示例2: activate_object

import org.omg.PortableServer.IdAssignmentPolicyValue; //导入依赖的package包/类
/**
 * Generate the Object Id for the given servant and add the servant to the
 * Active Object Map using this Id a a key. If the servant activator is set,
 * its incarnate method will be called.
 *
 * @param a_servant a servant that would serve the object with the returned
 * Object Id. If null is passed, under apporoprate policies the servant
 * activator is invoked.
 *
 * @return the generated objert Id for the given servant.
 *
 * @throws ServantAlreadyActive if this servant is already in the Active
 * Object Map and the UNIQUE_ID policy applies.
 *
 * @throws WrongPolicy if the required policies SYSTEM_ID and RETAIN do not
 * apply to this POA.
 */
public byte[] activate_object(Servant a_servant)
  throws ServantAlreadyActive, WrongPolicy
{
  checkDiscarding();
  required(ServantRetentionPolicyValue.RETAIN);
  required(IdAssignmentPolicyValue.SYSTEM_ID);

  AOM.Obj exists = aom.findServant(a_servant);

  if (exists != null)
    {
      if (exists.isDeactiveted())
        {
          // If exists but deactivated, activate and return
          // the existing key.
          exists.setDeactivated(false);
          incarnate(exists, exists.key, a_servant, false);
          return exists.key;
        }
      else if (applies(IdUniquenessPolicyValue.UNIQUE_ID))
        throw new ServantAlreadyActive();

      // It multiple ids are allowed, exit block allowing repetetive
      // activations.
    }

  byte[] object_key = AOM.getFreeId();
  ServantDelegateImpl delegate = new ServantDelegateImpl(a_servant, this,
    object_key);
  create_and_connect(object_key,
    a_servant._all_interfaces(this, object_key)[0], delegate);
  return object_key;
}
 
开发者ID:vilie,项目名称:javify,代码行数:51,代码来源:gnuPOA.java

示例3: gnuIdAssignmentPolicy

import org.omg.PortableServer.IdAssignmentPolicyValue; //导入依赖的package包/类
/**
 * Create the policy.
 *
 * @param v a value for the policy.
 */
public gnuIdAssignmentPolicy(IdAssignmentPolicyValue v)
{
  super(ID_ASSIGNMENT_POLICY_ID.value, v, v.value(),
        "IDL:org.omg/PortableServer/IdAssignmentPolicy:1.0"
       );
}
 
开发者ID:vilie,项目名称:javify,代码行数:12,代码来源:gnuIdAssignmentPolicy.java

示例4: activate_object

import org.omg.PortableServer.IdAssignmentPolicyValue; //导入依赖的package包/类
/**
 * Generate the Object Id for the given servant and add the servant to the
 * Active Object Map using this Id a a key. If the servant activator is set,
 * its incarnate method will be called.
 * 
 * @param a_servant a servant that would serve the object with the returned
 * Object Id. If null is passed, under apporoprate policies the servant
 * activator is invoked.
 * 
 * @return the generated objert Id for the given servant.
 * 
 * @throws ServantAlreadyActive if this servant is already in the Active
 * Object Map and the UNIQUE_ID policy applies.
 * 
 * @throws WrongPolicy if the required policies SYSTEM_ID and RETAIN do not
 * apply to this POA.
 */
public byte[] activate_object(Servant a_servant)
  throws ServantAlreadyActive, WrongPolicy
{
  checkDiscarding();
  required(ServantRetentionPolicyValue.RETAIN);
  required(IdAssignmentPolicyValue.SYSTEM_ID);

  AOM.Obj exists = aom.findServant(a_servant);

  if (exists != null)
    {
      if (exists.isDeactiveted())
        {
          // If exists but deactivated, activate and return
          // the existing key.
          exists.setDeactivated(false);
          incarnate(exists, exists.key, a_servant, false);
          return exists.key;
        }
      else if (applies(IdUniquenessPolicyValue.UNIQUE_ID))
        throw new ServantAlreadyActive();

      // It multiple ids are allowed, exit block allowing repetetive
      // activations.
    }

  byte[] object_key = AOM.getFreeId();
  ServantDelegateImpl delegate = new ServantDelegateImpl(a_servant, this,
    object_key);
  create_and_connect(object_key,
    a_servant._all_interfaces(this, object_key)[0], delegate);
  return object_key;
}
 
开发者ID:nmldiegues,项目名称:jvm-stm,代码行数:51,代码来源:gnuPOA.java

示例5: createPolicy

import org.omg.PortableServer.IdAssignmentPolicyValue; //导入依赖的package包/类
public static IdAssignmentPolicyImpl createPolicy(Any val)
   	throws org.omg.CORBA.PolicyError
{
    try {
        IdAssignmentPolicyValue value = 
            IdAssignmentPolicyValueHelper.extract(val);
        return new IdAssignmentPolicyImpl(value);
    }
    catch (BAD_PARAM bp) {
        throw new PolicyError(BAD_POLICY_VALUE.value);
    }
}
 
开发者ID:AlvaroVega,项目名称:TIDorbJ,代码行数:13,代码来源:IdAssignmentPolicyImpl.java

示例6: NameService

import org.omg.PortableServer.IdAssignmentPolicyValue; //导入依赖的package包/类
/**
 * Create NameService which starts the Root Naming Context in Persistent CosNaming
 * @param orb an ORB object.
 * @param logDir a File
 * @exception java.lang.Exception a Java exception.
 */
public NameService(ORB orb, File logDir)
    throws Exception
{
    theorb = orb;

    // Moved this to the creation of the ORB that is passed into this
    // constructor.
    //
    // This is required for creating Persistent Servants under this ORB
    // Right now the Persistent NameService and ORBD are launched together
    // Find out a better way of doing this, Since ORBD is an important
    // process which should not be killed because of some external process
    // orb.setPersistentServerId( (int) 1000 );

    // get and activate the root naming POA
    POA rootPOA = (POA)orb.resolve_initial_references(
        ORBConstants.ROOT_POA_NAME ) ;
    rootPOA.the_POAManager().activate();

    // create a new POA for persistent Naming Contexts
    // With Non-Retain policy, So that every time Servant Manager
    // will be contacted when the reference is made for the context
    // The id assignment is made by the NameServer, The Naming Context
    // id's will be in the format NC<Index>
    int i=0;
    Policy[] poaPolicy = new Policy[4];
    poaPolicy[i++] = rootPOA.create_lifespan_policy(
                     LifespanPolicyValue.PERSISTENT);
    poaPolicy[i++] = rootPOA.create_request_processing_policy(
                     RequestProcessingPolicyValue.USE_SERVANT_MANAGER);
    poaPolicy[i++] = rootPOA.create_id_assignment_policy(
                     IdAssignmentPolicyValue.USER_ID);
    poaPolicy[i++] = rootPOA.create_servant_retention_policy(
                     ServantRetentionPolicyValue.NON_RETAIN);


    nsPOA = rootPOA.create_POA("NameService", null, poaPolicy);
    nsPOA.the_POAManager().activate( );

    // create and set the servant manager
    contextMgr = new
        ServantManagerImpl(orb, logDir, this );

    // The RootObject key will be NC0
    String rootKey = contextMgr.getRootObjectKey( );
    // initialize the root Naming Context
    NamingContextImpl nc =
            new NamingContextImpl( orb, rootKey, this, contextMgr );
    nc = contextMgr.addContext( rootKey, nc );
    nc.setServantManagerImpl( contextMgr );
    nc.setORB( orb );
    nc.setRootNameService( this );

    nsPOA.set_servant_manager(contextMgr);
    rootContext = NamingContextHelper.narrow(
    nsPOA.create_reference_with_id( rootKey.getBytes( ),
    NamingContextHelper.id( ) ) );
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:65,代码来源:NameService.java

示例7: create_id_assignment_policy

import org.omg.PortableServer.IdAssignmentPolicyValue; //导入依赖的package包/类
/**
 * <code>create_id_assignment_policy</code>
 * <b>Section 3.3.8.5</b>
 */
public IdAssignmentPolicy create_id_assignment_policy(
    IdAssignmentPolicyValue value)
{
    return new IdAssignmentPolicyImpl(value);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:10,代码来源:POAImpl.java

示例8: create_id_assignment_policy

import org.omg.PortableServer.IdAssignmentPolicyValue; //导入依赖的package包/类
/** {@inheritDoc} */
public IdAssignmentPolicy create_id_assignment_policy(IdAssignmentPolicyValue a_value)
{
  return new gnuIdAssignmentPolicy(a_value);
}
 
开发者ID:vilie,项目名称:javify,代码行数:6,代码来源:gnuPOA.java

示例9: value

import org.omg.PortableServer.IdAssignmentPolicyValue; //导入依赖的package包/类
/**
 * Get the value for the policy that was passed in a constructor.
 */
public IdAssignmentPolicyValue value()
{
  return (IdAssignmentPolicyValue) getValue();
}
 
开发者ID:vilie,项目名称:javify,代码行数:8,代码来源:gnuIdAssignmentPolicy.java


注:本文中的org.omg.PortableServer.IdAssignmentPolicyValue类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。