blob: 5774b59a9ef3542518070e78e9990d99e2971a76 [file] [log] [blame]
/*
* Copyright 2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
using System.Collections;
using Nexus.Core;
namespace PhoneBook.Core.Commands
{
/// <summary>
/// Execute database statement indicated by QueryID
/// and wrap result in KeyValue objects
/// so that lists can be displayed by standard methods.
/// </summary>
///
public class BaseFilterList : BaseMapper
{
public override bool RequestExecute(IRequestContext context)
{
IList rows = Mapper.QueryForList(QueryID, null);
IKeyValueList list = new KeyValueList();
foreach (object key in rows)
{
list.Add(new KeyValue(key.ToString(), key));
}
context[ID] = list;
return CONTINUE;
}
}
}