Package org.openbravo.base.model

Examples of org.openbravo.base.model.AccessLevel


  }

  // search on the basis of the access level of the entity
  protected BaseOBObject searchInstance(Entity entity, String id) {
    final AccessLevel al = entity.getAccessLevel();
    BaseOBObject result = null;
    if (al == AccessLevel.SYSTEM) {
      result = searchSystem(id, entity);
    } else if (al == AccessLevel.SYSTEM_CLIENT) {
      // search client and system
View Full Code Here

TOP

Related Classes of org.openbravo.base.model.AccessLevel

Copyright © 2018 www.massapicom. 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.