edu.internet2.middleware.grouper.app.ldapProvisioning.LdapSyncAttributeCondition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grouper Show documentation
Show all versions of grouper Show documentation
Internet2 Groups Management Toolkit
package edu.internet2.middleware.grouper.app.ldapProvisioning;
/**
* special conditions of attributes
* @author mchyzer
*/
public enum LdapSyncAttributeCondition {
/**
* attribute doesnt exist
*/
ATTRIBUTE_NOT_EXIST,
/**
* attribute exists with no value
*/
ATTRIBUTE_EXIST_WITH_NO_VALUE;
}