Examples of registerGroup()


Examples of com.volantis.mcs.xdime.xforms.model.XFormBuilder.registerGroup()

        XDIMEResult result = super.doElementStart(context, attributes);

        // Figure out which model this group refers to.
        XFormBuilder xFormBuilder = context.getXFormBuilder();
        containingModel = xFormBuilder.registerGroup(attributes);

        // Update the form fragmentation state if required.
        // Get the styles which determine how this group should be displayed.
        final Styles styles = getStylingEngine(context).getStyles();
        containingModel.pushGroup(styles, getPageContext(context));
View Full Code Here

Examples of java.rmi.activation.ActivationSystem.registerGroup()

  CommandEnvironment cmdToExecute
      = new CommandEnvironment(getServerCommand(),
                               getServerOptions());
  ActivationGroupID gid = null;
        try {
      gid = sys.registerGroup(
                new ActivationGroupDesc(getServerProperties(),
                            cmdToExecute));
       storeGroupID(getLog(), gid);
  } catch (Exception e) {
            try {
View Full Code Here

Examples of java.rmi.activation.ActivationSystem.registerGroup()

            System.err.println("Create group descriptor");
            ActivationGroupDesc groupDesc =
                new ActivationGroupDesc(null, null);
            ActivationSystem system = ActivationGroup.getSystem();
            System.err.println("Register group descriptor");
            ActivationGroupID groupID = system.registerGroup(groupDesc);
            inst1 = new FakeInstantiator();
            inst2 = new FakeInstantiator();

            System.err.println("Invoke activeGroup with inst1");
            system.activeGroup(groupID, inst1, 0);
View Full Code Here

Examples of java.rmi.activation.ActivationSystem.registerGroup()

            System.out.flush();
            ActivationSystem as = ActivationGroup.getSystem();

            System.out.println("ActivationSystem = " + as);

            ActivationGroupID groupID = as.registerGroup(groupDesc);
            System.out.println("groupID = " + groupID);
            System.out.println("Activation group descriptor registered.");

            MarshalledObject data = new MarshalledObject("HelloImpl");
            System.out.println("MarshalledObject data = " + data);
View Full Code Here

Examples of java.rmi.activation.ActivationSystem.registerGroup()

  ActivationSystem actSys =
      (ActivationSystem) actSysPreparer.prepareProxy(
    ActivationGroup.getSystem());

  /* Create the activation group */
  ActivationGroupID gid = actSys.registerGroup(groupDesc);

  /* Create the activation descriptor */
  ActivationDesc actDesc =
      new ActivationDesc(
    gid, ActivatableServer.class.getName(),
View Full Code Here

Examples of java.rmi.activation.ActivationSystem.registerGroup()

  CommandEnvironment cmdToExecute
      = new CommandEnvironment(getServerCommand(),
                               getServerOptions());
  ActivationGroupID gid = null;
        try {
      gid = sys.registerGroup(
                new ActivationGroupDesc(getServerProperties(),
                            cmdToExecute));
       storeGroupID(getLog(), gid);
  } catch (Exception e) {
            try {
View Full Code Here

Examples of org.exist.security.AbstractRealm.registerGroup()

                public void execute(final Int2ObjectHashMap<Group> principalDb) {
                    principalDb.put(id, newGroup);
                }
            });
           
            registeredRealm.registerGroup(newGroup);

            save();
            newGroup.save();

            return newGroup;
View Full Code Here

Examples of org.exist.security.AbstractRealm.registerGroup()

                    group.removed = true;
                    addGroup(group.getId(), group);
                } else if (name != null && !realm.hasGroup(name)) {
                    final GroupImpl group = new GroupImpl( realm, conf );
                    addGroup(group.getId(), group);
                    realm.registerGroup(group);
                } else {
                    //this can't be! log any way
                    LOG.error("Group '"+name+"' pressent at '"+realmId+"' realm, but get event that new one created.");
                }
                           
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.