blob: 30c5f313e20af17101ab41c07a66ef339baad27d [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.filemgrcheck;
import org.pentaho.di.core.row.RowMetaInterface;
import org.pentaho.di.trans.step.BaseStepData;
import org.pentaho.di.trans.step.StepDataInterface;
/**
* This class is part of the demo step plug-in implementation.
* It demonstrates the basics of developing a plug-in step for PDI.
*
* The demo step adds a new string field to the row stream and sets its
* value to "Hello World!". The user may select the name of the new field.
*
* This class is the implementation of StepDataInterface.
*
* Implementing classes inherit from BaseStepData, which implements the entire
* interface completely.
*
* In addition classes implementing this interface usually keep track of
* per-thread resources during step execution. Typical examples are:
* result sets, temporary data, caching indexes, etc.
*
* The implementation for the demo step stores the output row structure in
* the data class.
*
*/
public class FilemgrCheckStepData extends BaseStepData implements StepDataInterface {
public RowMetaInterface outputRowMeta;
public String fieldname;
public FilemgrCheckStepData()
{
super();
}
}