ManagerSearchType.getOrgType
Code IndexAdd Codota to your IDE (free)

Best code snippets using com.evolveum.midpoint.xml.ns._public.common.common_3.ManagerSearchType.getOrgType(Showing top 6 results out of 315)

origin: Evolveum/midpoint

public ManagerSearchDto(ManagerSearchType manager) {
  if (manager != null) {
    orgType = manager.getOrgType();
    allowSelf = Boolean.TRUE.equals(manager.isAllowSelf());
  }
}
origin: Evolveum/midpoint

public int hashCode(ObjectLocator locator, HashCodeStrategy strategy) {
  int currentHashCode = 1;
  {
    String theOrgType;
    theOrgType = this.getOrgType();
    currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "orgType", theOrgType), currentHashCode, theOrgType);
  }
  {
    Boolean theAllowSelf;
    theAllowSelf = this.isAllowSelf();
    currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "allowSelf", theAllowSelf), currentHashCode, theAllowSelf);
  }
  return currentHashCode;
}
origin: Evolveum/midpoint

/**
 * Creates a new {@code ManagerSearchType} instance by deeply copying a given {@code ManagerSearchType} instance.
 * 
 * 
 * @param o
 *     The instance to copy.
 * @throws NullPointerException
 *     if {@code o} is {@code null}.
 */
public ManagerSearchType(final ManagerSearchType o) {
  // CC-XJC Version 2.0 Build 2011-09-16T18:27:24+0000
  super();
  if (o == null) {
    throw new NullPointerException("Cannot create a copy of 'ManagerSearchType' from 'null'.");
  }
  // CBuiltinLeafInfo: java.lang.String
  this.orgType = ((o.orgType == null)?null:o.getOrgType());
  // CBuiltinLeafInfo: java.lang.Boolean
  this.allowSelf = ((o.allowSelf == null)?null:o.isAllowSelf());
}
origin: Evolveum/midpoint

ObjectType object = resolveReference(objectRef, ObjectType.class, result);
String orgType = managerSearch.getOrgType();
boolean allowSelf = Boolean.TRUE.equals(managerSearch.isAllowSelf());
Collection<UserType> managers;
origin: Evolveum/midpoint

public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy strategy) {
  if (!(object instanceof ManagerSearchType)) {
    return false;
  }
  if (this == object) {
    return true;
  }
  final ManagerSearchType that = ((ManagerSearchType) object);
  {
    String lhsOrgType;
    lhsOrgType = this.getOrgType();
    String rhsOrgType;
    rhsOrgType = that.getOrgType();
    if (!strategy.equals(LocatorUtils.property(thisLocator, "orgType", lhsOrgType), LocatorUtils.property(thatLocator, "orgType", rhsOrgType), lhsOrgType, rhsOrgType)) {
      return false;
    }
  }
  {
    Boolean lhsAllowSelf;
    lhsAllowSelf = this.isAllowSelf();
    Boolean rhsAllowSelf;
    rhsAllowSelf = that.isAllowSelf();
    if (!strategy.equals(LocatorUtils.property(thisLocator, "allowSelf", lhsAllowSelf), LocatorUtils.property(thatLocator, "allowSelf", rhsAllowSelf), lhsAllowSelf, rhsAllowSelf)) {
      return false;
    }
  }
  return true;
}
origin: Evolveum/midpoint

/**
 * Creates and returns a deep copy of this object.
 * 
 * 
 * @return
 *     A deep copy of this object.
 */
@Override
public ManagerSearchType clone() {
  try {
    {
      // CC-XJC Version 2.0 Build 2011-09-16T18:27:24+0000
      final ManagerSearchType clone = ((ManagerSearchType) super.clone());
      // CBuiltinLeafInfo: java.lang.String
      clone.orgType = ((this.orgType == null)?null:this.getOrgType());
      // CBuiltinLeafInfo: java.lang.Boolean
      clone.allowSelf = ((this.allowSelf == null)?null:this.isAllowSelf());
      return clone;
    }
  } catch (CloneNotSupportedException e) {
    // Please report this at https://apps.sourceforge.net/mantisbt/ccxjc/
    throw new AssertionError(e);
  }
}
com.evolveum.midpoint.xml.ns._public.common.common_3ManagerSearchTypegetOrgType

Popular methods of ManagerSearchType

    Popular classes and methods

    • setRequestProperty (URLConnection)
      Sets the value of the specified request header field. The value will only be used by the current URL
    • getOriginalFilename (MultipartFile)
    • scheduleAtFixedRate (Timer)
      Schedules the specified task for repeated fixed-rate execution, beginning after the specified delay.
    • Time (java.sql)
      Java representation of an SQL TIME value. Provides utilities to format and parse the time's represen
    • Comparator (java.util)
      A Comparator is used to compare two objects to determine their ordering with respect to each other.
    • HashMap (java.util)
      HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
    • Locale (java.util)
      Locale represents a language/country/variant combination. Locales are used to alter the presentatio
    • Queue (java.util)
      A collection designed for holding elements prior to processing. Besides basic java.util.Collection o
    • Set (java.util)
      A Set is a data structure which does not allow duplicate elements.
    • Vector (java.util)
      Vector is an implementation of List, backed by an array and synchronized. All optional operations in

    For IntelliJ IDEA and
    Android Studio

    • Codota IntelliJ IDEA pluginCodota Android Studio pluginCode IndexSign in
    • EnterpriseFAQAboutContact Us
    • Terms of usePrivacy policyCodeboxFind Usages
    Add Codota to your IDE (free)