edu.internet2.middleware.subject.provider.Search Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grouper Show documentation
Show all versions of grouper Show documentation
Internet2 Groups Management Toolkit
/**
* Copyright 2014 Internet2
*
* 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.
*/
/*--
Copyright 2005 Internet2. All Rights Reserved.
See doc/license.txt in this distribution.
*/
/*
* Search.java
*
* Created on March 8, 2006, 12:33 PM
*
* Author Ellen Sluss
*/
package edu.internet2.middleware.subject.provider;
/**
*
* @author esluss
*
*/
// Holds the a search type and its parameters that were read from the subject.properties file.
import java.util.Properties;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import edu.internet2.middleware.subject.SubjectUtils;
/**
*
*/
public class Search {
/** */
@SuppressWarnings("unused")
private static Log log = edu.internet2.middleware.grouper.util.GrouperUtil.getLog(Search.class);
/** */
protected Properties params = new Properties();
/** */
protected String searchType = null;
/**
* Creates a new instance of Search
*/
public Search() {
}
/**
*
* @param searchType1
*/
public void setSearchType(String searchType1) {
this.searchType = searchType1;
}
/**
*
* @return type
*/
public String getSearchType() {
return this.searchType;
}
/**
*
* @param name
* @param value
*/
public void addParam(String name, String value) {
this.params.setProperty(name, value);
}
/**
* @param name
* @return param
*/
public String getParam(String name) {
return this.params.getProperty(name);
}
/**
* @return params
*/
protected Properties getParams() {
return this.params;
}
/**
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
return "Search [params=" + SubjectUtils.propertiesToString(this.params) + ", searchType=" + this.searchType + "]";
}
}