blob: 8c8aa18953eba287e0335f94e6f93df77ec140c8 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.
*/
package org.apache.oodt.product.handlers.ofsn;
//JDK imports
import java.util.Properties;
/**
*
* A configuration element in the XML config file for the OFSN handler.
*
* @author mattmann
* @version $Revision$
*
*/
public class OFSNHandlerConfig {
private String className;
private String type;
private String name;
private Properties handlerConf;
/**
* @param className
* @param type
* @param name
*/
public OFSNHandlerConfig(String className, String type, String name) {
super();
this.className = className;
this.type = type;
this.name = name;
this.handlerConf = new Properties();
}
/**
*
*/
public OFSNHandlerConfig() {
super();
}
/**
* @return the className
*/
public String getClassName() {
return className;
}
/**
* @param className
* the className to set
*/
public void setClassName(String className) {
this.className = className;
}
/**
* @return the type
*/
public String getType() {
return type;
}
/**
* @param type
* the type to set
*/
public void setType(String type) {
this.type = type;
}
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name
* the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* @return the handlerConf
*/
public Properties getHandlerConf() {
return handlerConf;
}
/**
* @param handlerConf the handlerConf to set
*/
public void setHandlerConf(Properties handlerConf) {
this.handlerConf = handlerConf;
}
}