Examples of AccessCondition


Examples of org.goobi.production.properties.AccessCondition

    for (int position = 0; position < availableProperties.size(); position++) {
      ProcessProperty propertyAtPosition = availableProperties.get(position);
      String key = propertyAtPosition.getName();
      if (propertiesToSet.containsKey(key)) {
        String desiredValue = propertiesToSet.get(key);
        AccessCondition permissions = propertyAtPosition.getCurrentStepAccessCondition();
        if (AccessCondition.WRITE.equals(permissions) || AccessCondition.WRITEREQUIRED.equals(permissions)) {
          propertyAtPosition.setValue(desiredValue);
          if (dialog.getContainer() == null || dialog.getContainer() == 0) {
            dialog.setProcessProperty(propertyAtPosition);
          } else
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.