/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at
* trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
* add the following below this CDDL HEADER, with the fields enclosed
* by brackets "[]" replaced with your own identifying information:
* Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*
*
* Copyright 2008-2009 Sun Microsystems, Inc.
*/
/**
* The table model for the indexes. This is the table model used by the table
* that appears on the right side of the Manage Index dialog when the user
* clicks on the node "Index" and it gives a global view of the indexes
* defined on a given backend.
*
*/
{
/**
* {@inheritDoc}
*/
{
return new String[] {
};
}
/**
* Comparable implementation.
* @param index1 the first index descriptor to compare.
* @param index2 the second index descriptor to compare.
* @return 1 if according to the sorting options set by the user the first
* index descriptor must be put before the second descriptor, 0 if they
* are equivalent in terms of sorting and -1 if the second descriptor must
* be put before the first descriptor.
*/
{
int result;
if (result == 0)
{
for (int i : possibleResults)
{
if (i != 0)
{
result = i;
break;
}
}
}
if (!sortAscending)
{
}
return result;
}
/**
* {@inheritDoc}
*/
{
return new String[] {
};
}
/**
* Returns the String representing the entry limit value of the index.
* @return the String representing the entry limit value of the index.
*/
{
if (i.getEntryLimit() >= 0)
{
}
else
{
}
}
// Comparison methods.
{
}
{
}
{
}
/**
* Returns the String representation of the index type for the index.
* @param index the index.
* @return the String representation of the index type for the index.
*/
{
{
Message v;
switch (type)
{
case SUBSTRING:
break;
case ORDERING:
break;
case PRESENCE:
break;
case EQUALITY:
break;
case APPROXIMATE:
break;
default:
}
{
}
}
{
}
}
}