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

org.synchronoss.cpo.jdbc.JdbcCpoArgument Maven / Gradle / Ivy

/*
 * Copyright (C) 2003-2012 David E. Berry
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 *
 * A copy of the GNU Lesser General Public License may also be found at
 * http://www.gnu.org/licenses/lgpl.txt
 */
package org.synchronoss.cpo.jdbc;

import org.synchronoss.cpo.meta.domain.CpoArgument;

/**
 * JdbcCpoArgument is a class that defines the arguments to a JDBC expression
 *
 * @author david berry
 */
public class JdbcCpoArgument extends CpoArgument implements java.io.Serializable, java.lang.Cloneable {

  /**
   * Version Id for this class.
   */
  private static final long serialVersionUID = 1L;
  private static final String IN_PARAMETER = "IN";
  private static final String OUT_PARAMETER = "OUT";
  private static final String INOUT_PARAMETER = "BOTH";  
  private String scope = null;
  private String typeInfo = null;

  public JdbcCpoArgument() {
    super();
  }

  @Override
  public JdbcCpoAttribute getAttribute() {
    return (JdbcCpoAttribute) super.getAttribute();
  }

  public boolean isInParameter() {
    return IN_PARAMETER.equals(getScope()) || INOUT_PARAMETER.equals(getScope());
  }

  public boolean isOutParameter() {
    return OUT_PARAMETER.equals(getScope()) || INOUT_PARAMETER.equals(getScope());
  }

  public String getScope() {
    return scope;
  }

  public void setScope(String scope) {
    this.scope = scope;
  }

  public String getTypeInfo() {
    return typeInfo;
  }

  public void setTypeInfo(String typeInfo) {
    this.typeInfo = typeInfo;
  }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy