congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
org.identityconnectors.common
Code IndexAdd Tabnine to your IDE (free)

How to use org.identityconnectors.common

Best Java code snippets using org.identityconnectors.common (Showing top 20 results out of 315)

origin: net.tirasa.connid/connector-framework

public VersionRange(Version low, boolean isLowInclusive, Version high, boolean isHighInclusive) {
  Assertions.nullCheck(low, "floorVersion");
  floorVersion = low;
  isFloorInclusive = isLowInclusive;
  ceilingVersion = high;
  isCeilingInclusive = isHighInclusive;
  empty = isEmpty0();
}
origin: net.tirasa.connid/connector-framework

/**
 * Returns this version number's minor component.
 *
 * @return the minor component or <code>null</code> if this version number
 *         doesn't have a minor component.
 */
public Integer getMicro() {
  return getComponent(MICRO);
}
origin: net.tirasa.connid/connector-framework

/**
 * Return any current value of the attribute that is being built.
 *
 * @return any current value of the attribute that is being built.
 */
public List<Object> getValue() {
  return value == null ? null : CollectionUtil.asReadOnlyList(value);
}
origin: org.connid/framework

Script(String scriptLanguage, String scriptText) {
  Assertions.blankCheck(scriptLanguage, "scriptLanguage");
  Assertions.nullCheck(scriptText, "scriptText"); // Allow empty text.
  this.scriptLanguage = scriptLanguage;
  this.scriptText = scriptText;
}
origin: net.tirasa.connid/connector-framework-internal

public AttributesToGetSearchResultsHandler(final ResultsHandler handler, final String[] attrsToGet) {
  super(attrsToGet);
  Assertions.nullCheck(handler, "handler");
  this.handler = handler;
}
origin: net.tirasa.connid/connector-framework

@Override
public boolean equals(Object o) {
  if (o instanceof Version) {
    return compareTo((Version) o) == 0;
  }
  return false;
}
origin: net.tirasa.connid/connector-framework

/**
 * Call print for every string in the array.
 *
 * @throws NullPointerException
 *             if value is null.
 */
public void print(final String[] value) {
  for (int i = 0; i < value.length; i++) {
    assert value[i] != null;
    print(value[i]);
  }
}
origin: net.tirasa.connid/connector-framework

/**
 * Finds the index of the first non digit.
 *
 * @param str String to search for a non digit.
 * @return -1 if not found otherwise the index.
 */
public static int indexOfNonDigit(final String str) {
  return indexOfNonDigit(str, 0);
}
origin: org.connid/framework

/**
 * Call println for every string in the array.
 */
public void println(final String[] value) {
  assert value != null;
  for (int i = 0; i < value.length; i++) {
    assert value[i] != null;
    println(value[i]);
  }
}
origin: net.tirasa.connid/connector-framework

/**
 * Creates a new version from components.
 *
 * @param components
 *            the components
 */
public static Version create(Integer... components) {
  return new Version(components);
}
origin: Tirasa/ConnId

@Override
public boolean equals(Object o) {
  if (o == this) {
    return true;
  }
  if (o instanceof TestACanEqualB) {
    return this.a == ((TestACanEqualB) o).getA();
  }
  if (o instanceof TestBCanEqualA) {
    return this.a == ((TestBCanEqualA) o).getB();
  }
  return false;
}
origin: org.connid/framework

/**
 * Return the string of digits from string.
 * 
 * @param str
 *            Source string to search.
 */
public static String subDigitString(String str) {
  return subDigitString(str, 0);
}
origin: net.tirasa.connid/connector-framework-internal

public ApplicationClassLoaderHandler(final ClassLoader applicationClassLoader,
    final ObjectStreamHandler target) {
  Assertions.nullCheck(applicationClassLoader, "applicationClassLoader");
  Assertions.nullCheck(target, "target");
  this.applicationClassLoader = applicationClassLoader;
  this.target = target;
}
origin: Tirasa/ConnId

public VersionRange(Version low, boolean isLowInclusive, Version high, boolean isHighInclusive) {
  Assertions.nullCheck(low, "floorVersion");
  floorVersion = low;
  isFloorInclusive = isLowInclusive;
  ceilingVersion = high;
  isCeilingInclusive = isHighInclusive;
  empty = isEmpty0();
}
origin: org.connid/framework

/**
 * Returns this version number's major component.
 *
 * @return the major component; never null.
 */
public Integer getMajor() {
  return getComponent(MAJOR);
}
origin: Tirasa/ConnId

@Override
public boolean equals(Object o) {
  if (o == this) {
    return true;
  }
  if (o instanceof TestACanEqualB) {
    return this.b == ((TestACanEqualB) o).getA();
  }
  if (o instanceof TestBCanEqualA) {
    return this.b == ((TestBCanEqualA) o).getB();
  }
  return false;
}
origin: org.connid/connid-framework-internal

public ApplicationClassLoaderHandler(final ClassLoader applicationClassLoader,
    final ObjectStreamHandler target) {
  Assertions.nullCheck(applicationClassLoader, "applicationClassLoader");
  Assertions.nullCheck(target, "target");
  _applicationClassLoader = applicationClassLoader;
  _target = target;
}
origin: org.connid/framework

/**
 * Returns this version number's minor component.
 *
 * @return the minor component or <code>null</code> if this version
 *         number doesn't have a minor component.
 */
public Integer getMinor() {
  return getComponent(MINOR);
}
origin: net.tirasa.connid/connector-framework

/**
 * Returns this version number's major component.
 *
 * @return the major component; never null.
 */
public Integer getMajor() {
  return getComponent(MAJOR);
}
origin: net.tirasa.connid/connector-framework

/**
 * Returns this version number's minor component.
 *
 * @return the minor component or <code>null</code> if this version number
 *         doesn't have a minor component.
 */
public Integer getMinor() {
  return getComponent(MINOR);
}
org.identityconnectors.common

Most used classes

  • StringUtil
    String Utilities.
  • GuardedString
    Secure string implementation that solves the problems associated with keeping passwords as java.lang
  • Log
    Yet another logging abstraction.
  • CollectionUtil
  • CurrentLocale
    Thread local variable that impacts localization of all messages in the connector framework. This is
  • Version,
  • ObjectPoolConfiguration,
  • GuardedByteArray,
  • SecurityUtil,
  • ReflectionUtil,
  • Log$Level,
  • Encryptor,
  • EncryptorFactory,
  • Assertions,
  • Pair,
  • Script,
  • ScriptExecutorFactory,
  • XmlUtil,
  • EqualsHashCodeBuilder
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now