All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ow2.bonita.facade.impl.AbstractRemoteManagementAPIImpl Maven / Gradle / Ivy

The newest version!
/**
 * Copyright (C) 2010-2012 BonitaSoft S.A.
 * BonitaSoft, 31 rue Gustave Eiffel - 38000 Grenoble
 * This library is free software; you can redistribute it and/or modify it under the terms
 * of the GNU Lesser General Public License as published by the Free Software Foundation
 * version 2.1 of the License.
 * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the GNU Lesser General Public License for more details.
 * You should have received a copy of the GNU Lesser General Public License along with this
 * program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
 * Floor, Boston, MA  02110-1301, USA.
 **/
package org.ow2.bonita.facade.impl;

import java.rmi.RemoteException;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;

import org.ow2.bonita.facade.APIAccessor;
import org.ow2.bonita.facade.ManagementAPI;
import org.ow2.bonita.facade.def.element.BusinessArchive;
import org.ow2.bonita.facade.def.majorElement.ProcessDefinition;
import org.ow2.bonita.facade.exception.DeploymentException;
import org.ow2.bonita.facade.exception.ProcessNotFoundException;
import org.ow2.bonita.facade.exception.RuleAlreadyExistsException;
import org.ow2.bonita.facade.exception.RuleNotFoundException;
import org.ow2.bonita.facade.exception.UndeletableInstanceException;
import org.ow2.bonita.facade.exception.UndeletableProcessException;
import org.ow2.bonita.facade.exception.UserNotFoundException;
import org.ow2.bonita.facade.internal.AbstractRemoteManagementAPI;
import org.ow2.bonita.facade.privilege.PrivilegePolicy;
import org.ow2.bonita.facade.privilege.Rule;
import org.ow2.bonita.facade.privilege.Rule.RuleType;
import org.ow2.bonita.facade.uuid.AbstractUUID;
import org.ow2.bonita.facade.uuid.ProcessDefinitionUUID;
import org.ow2.bonita.identity.auth.DomainOwner;
import org.ow2.bonita.identity.auth.PasswordOwner;
import org.ow2.bonita.identity.auth.RESTUserOwner;
import org.ow2.bonita.identity.auth.UserOwner;

/**
 * 
 * @author Elias Ricken de Medeiros, Matthieu Chaffotte
 * 
 */
public class AbstractRemoteManagementAPIImpl implements AbstractRemoteManagementAPI {

  protected Map apis = new HashMap();

  protected ManagementAPI getAPI(final Map options) {
    if (options == null) {
      throw new IllegalArgumentException("The options are null or not well set.");
    }
    final String queryList = options.get(APIAccessor.QUERYLIST_OPTION);
    final String user = options.get(APIAccessor.USER_OPTION);
    final String domain = options.get(APIAccessor.DOMAIN_OPTION);
    final String restUser = options.get(APIAccessor.REST_USER_OPTION);
    UserOwner.setUser(user);
    DomainOwner.setDomain(domain);
    if (restUser != null) {
      RESTUserOwner.setUser(restUser);
      final String restPswd = options.get(APIAccessor.PASSWORD_HASH_OPTION);
      PasswordOwner.setPassword(restPswd);
    }

    if (!apis.containsKey(queryList)) {
      apis.put(queryList, new StandardAPIAccessorImpl().getManagementAPI(queryList));
    }
    return apis.get(queryList);
  }

  @Override
  public ProcessDefinition deploy(final BusinessArchive businessArchive, final Map options)
      throws DeploymentException {
    return getAPI(options).deploy(businessArchive);
  }

  @Override
  public void deployJar(final String jarName, final byte[] jar, final Map options)
      throws DeploymentException {
    getAPI(options).deployJar(jarName, jar);
  }

  @Override
  public Set getAvailableJars(final Map options) throws RemoteException {
    return getAPI(options).getAvailableJars();
  }

  @Override
  public void removeJar(final String jarName, final Map options) throws DeploymentException {
    getAPI(options).removeJar(jarName);
  }

  @Override
  public void deleteProcess(final ProcessDefinitionUUID processUUID, final Map options)
      throws ProcessNotFoundException, UndeletableProcessException, UndeletableInstanceException {
    getAPI(options).deleteProcess(processUUID);
  }

  @Override
  public void deleteAllProcesses(final Map options) throws UndeletableInstanceException,
      RemoteException, UndeletableProcessException {
    getAPI(options).deleteAllProcesses();
  }

  @Override
  public String getLoggedUser(final Map options) throws RemoteException {
    return getAPI(options).getLoggedUser();
  }

  @Override
  public void addMetaData(final String key, final String value, final Map options)
      throws RemoteException {
    getAPI(options).addMetaData(key, value);
  }

  @Override
  public void deleteMetaData(final String key, final Map options) throws RemoteException {
    getAPI(options).deleteMetaData(key);
  }

  @Override
  public String getMetaData(final String key, final Map options) throws RemoteException {
    return getAPI(options).getMetaData(key);
  }

  @Override
  public void archive(final ProcessDefinitionUUID processUUID, final Map options)
      throws DeploymentException {
    getAPI(options).archive(processUUID);
  }

  @Override
  public void disable(final ProcessDefinitionUUID processUUID, final Map options)
      throws DeploymentException {
    getAPI(options).disable(processUUID);
  }

  @Override
  public void enable(final ProcessDefinitionUUID processUUID, final Map options)
      throws DeploymentException {
    getAPI(options).enable(processUUID);
  }

  @Override
  public Boolean isUserAdmin(final String username, final Map options) throws UserNotFoundException,
      RemoteException {
    return getAPI(options).isUserAdmin(username);
  }

  @Override
  public Boolean checkUserCredentials(final String username, final String password, final Map options)
      throws RemoteException {
    return getAPI(options).checkUserCredentials(username, password);
  }

  @Override
  public Boolean checkUserCredentialsWithPasswordHash(final String username, final String passwordHash,
      final Map options) throws RemoteException {
    return getAPI(options).checkUserCredentialsWithPasswordHash(username, passwordHash);
  }

  @Override
  public Rule createRule(final String name, final String label, final String description, final RuleType type,
      final Map options) throws RemoteException, RuleAlreadyExistsException {
    return getAPI(options).createRule(name, label, description, type);
  }

  @Override
  public List getRules(final RuleType ruleType, final int fromIndex, final int pageSige,
      final Map options) throws RemoteException {
    return getAPI(options).getRules(ruleType, fromIndex, pageSige);
  }

  @Override
  public long getNumberOfRules(final RuleType ruleType, final Map options) throws RemoteException {
    return getAPI(options).getNumberOfRules(ruleType);
  }

  @Override
  public PrivilegePolicy getRuleTypePolicy(final RuleType ruleType, final Map options)
      throws RemoteException {
    return getAPI(options).getRuleTypePolicy(ruleType);
  }

  @Override
  public void setRuleTypePolicy(final RuleType ruleType, final PrivilegePolicy newPolicy,
      final Map options) throws RemoteException {
    getAPI(options).setRuleTypePolicy(ruleType, newPolicy);
  }

  public  void addExceptionsToRuleByUUID(final String ruleUUID, final Set exceptions,
      final Map options) throws RuleNotFoundException, RemoteException {
    getAPI(options).addExceptionsToRuleByUUID(ruleUUID, exceptions);
  }

  @Override
  public void deleteRuleByUUID(final String ruleUUID, final Map options) throws RuleNotFoundException,
      RemoteException {
    getAPI(options).deleteRuleByUUID(ruleUUID);
  }

  @Override
  public List getAllRules(final Map options) throws RemoteException {
    return getAPI(options).getAllRules();
  }

  @Override
  public Rule getRuleByUUID(final String ruleUUID, final Map options) throws RuleNotFoundException,
      RemoteException {
    return getAPI(options).getRuleByUUID(ruleUUID);
  }

  public  void removeExceptionsFromRuleByUUID(final String ruleUUID, final Set exceptions,
      final Map options) throws RuleNotFoundException, RemoteException {
    getAPI(options).removeExceptionsFromRuleByUUID(ruleUUID, exceptions);
  }

  @Override
  public Rule updateRuleByUUID(final String ruleUUID, final String name, final String label, final String description,
      final Map options) throws RuleNotFoundException, RuleAlreadyExistsException, RemoteException {
    return getAPI(options).updateRuleByUUID(ruleUUID, name, label, description);
  }

  @Override
  public void updateMigrationDate(final ProcessDefinitionUUID processUUID, final Date migrationDate,
      final Map options) throws ProcessNotFoundException, RemoteException {
    getAPI(options).updateMigrationDate(processUUID, migrationDate);
  }

  @Override
  public void setResource(final ProcessDefinitionUUID processUUID, final String resourcePath, final byte[] content,
      final Map options) throws ProcessNotFoundException {
    getAPI(options).setResource(processUUID, resourcePath, content);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy