All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ibm.ims.connect.impl.CmdImpl Maven / Gradle / Ivy

The newest version!
/**
 * File: CmdImpl.java                                               
 * ==========================================================================
 * Licensed Material - Property of IBM
 *  
 * IBM Confidential
 * 
 * OCO Source Materials
 * 
 * 5655-TDA
 * 
 * (C) Copyright IBM Corp. 2011, 2013 All Rights Reserved. 
 * 
 * The source code for this program is not published or  
 * otherwise divested of its trade secrets, irrespective 
 * of what has been deposited with the U.S. Copyright 
 * Office.
 * 
 * US Government Users Restricted Rights - Use, duplication or
 * disclosure restricted by GSA ADP Schedule Contract with
 * IBM Corp.
 * =========================================================================== 
 */
package com.ibm.ims.connect.impl;

import com.ibm.ims.connect.Cmd;


/**
 * @author kevin
 *
 */
public class CmdImpl implements Cmd
{
    private String cmdElementText;
    
    private String master = null; 
    private String userid = null;
    private String verb = null; 
    private String kwd = null; 
    private String input = null;
    
    
    /**
     * @param cmdElementText the cmdElementText to set
     */
    public CmdImpl(String aCmdElementText)
    {
        this.setCmdElementText(aCmdElementText);
    }
    
    /**
     * @return the cmdElementText
     */
    public String getCmdElementText()
    {
        return this.cmdElementText;
    }
    
    /**
     * @param cmdElementText the cmdElementText to set
     */
    public void setCmdElementText(String cmd)
    {
        this.cmdElementText = cmd;
    }
    
    
    /**
     * @return the input
     */
    public String getInput()
    {
        return this.input;
    }
    
    /**
     * @param input the input to set
     */
    public void setInput(String input)
    {
        this.input = input;
    }
    
    
    /**
     * @return the kwd
     */
    public String getKwd()
    {
        return this.kwd;
    }
    
    /**
     * @param kwd the kwd to set
     */
    public void setKwd(String kwd)
    {
        this.kwd = kwd;
    }
    
    
    /**
     * @return the master
     */
    public String getMaster()
    {
        return this.master;
    }
    
    /**
     * @param master the master to set
     */
    public void setMaster(String master)
    {
        this.master = master;
    }
    
    
    /**
     * @return the userid
     */
    public String getUserid()
    {
        return this.userid;
    }
    
    /**
     * @param userid the userid to set
     */
    public void setUserid(String userid)
    {
        this.userid = userid;
    }
    
    
    /**
     * @return the verb
     */
    public String getVerb()
    {
        return this.verb;
    }
    
    /**
     * @param verb the verb to set
     */
    public void setVerb(String verb)
    {
        this.verb = verb;
    } 
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy