Examples of UID


Examples of org.identityconnectors.framework.common.objects.Uid

    private ConnectorObject getRemoteObject(final ConnectorFacadeProxy connector, final PropagationTask task,
            final boolean latest) {
        try {

            return connector.getObject(task.getPropagationMode(), task.getPropagationOperation(), ObjectClass.ACCOUNT,
                    new Uid(latest || task.getOldAccountId() == null
                    ? task.getAccountId()
                    : task.getOldAccountId()), connector.getOperationOptions(task.getResource()));

        } catch (RuntimeException ignore) {
            LOG.debug("Resolving username", ignore);
View Full Code Here

Examples of org.identityconnectors.framework.common.objects.Uid

            throw new NotFoundException("Resource '" + resourceName + "'");
        }

        final ConnectorFacadeProxy connector = connLoader.getConnector(resource);

        final ConnectorObject connectorObject = connector.getObject(ObjectClass.ACCOUNT, new Uid(objectId), connector.
                getOperationOptions(resource));

        if (connectorObject == null) {
            throw new NotFoundException("Object " + objectId + " not found on resource " + resourceName);
        }
View Full Code Here

Examples of org.jboss.util.id.UID

      File dir = new File(ServerConfigLocator.locate().getServerTempLocation().toURI());

      // Setup the reference to the session data store directory
      dir = new File(dir, storeDirName);
      // ejbName is not unique across all deployments, so use a unique token
      dir = new File(dir, ejbName + "-" + new UID().toString());
      storeDir = dir;

      log.debug("Storing sessions for '" + ejbName + "' in: " + storeDir);

      // if the directory does not exist then try to create it
View Full Code Here

Examples of org.jboss.util.id.UID

    * @return  A {@link UID}.
    */
   public Object createId(StatefulSessionEnterpriseContext ctx)
      throws Exception
   {
      return new UID();
   }
View Full Code Here

Examples of org.jboss.util.id.UID

      File dir = new File("./temp");

      // Setup the reference to the session data store directory
      dir = new File(dir, storeDirName);
      // ejbName is not unique across all deployments, so use a unique token
      dir = new File(dir, ejbName + "-" + new UID().toString());
      storeDir = dir;

      if (debug)
      {
         log.debug("Storing sessions for '" + ejbName + "' in: " + storeDir);
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.