Exemplo n.º 1
0
  /**
   * Check if the OID list contains the specified OID
   *
   * @param oid Oid
   * @return boolean
   */
  public final boolean hasOid(Oid oid) {
    boolean foundOid = false;

    if (m_mechTypes != null) foundOid = oid.containedIn(m_mechTypes);

    return foundOid;
  }