openesb-components/contrib-bostech/com.bostechcorp.cbesb.runti.../src/java/com/bostechcorp/cbesb/runtime/component/util/wsdl/BaseBinding.java

67 lines
1.9 KiB
Java
Executable File

/*
* ChainBuilder ESB
* Visual Enterprise Integration
*
* Copyright (C) 2006 Bostech Corporation
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* This program 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 General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License along with
* this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*
* $Id: BaseBinding.java,v 1.1.1.1 2007/04/09 17:49:31 mpreston Exp $
*/
package com.bostechcorp.cbesb.runtime.component.util.wsdl;
import java.io.Serializable;
import javax.wsdl.extensions.ExtensibilityElement;
import javax.xml.namespace.QName;
public class BaseBinding implements ExtensibilityElement, Serializable {
/**
* Generated serial version UID
*/
private static final long serialVersionUID = -2824779016026018750L;
protected Boolean required;
protected QName elementType;
/**
* @return Returns the elementType.
*/
public QName getElementType() {
return elementType;
}
/**
* @param elementType The elementType to set.
*/
public void setElementType(QName elementType) {
this.elementType = elementType;
}
/**
* @return Returns the required.
*/
public Boolean getRequired() {
return required;
}
/**
* @param required The required to set.
*/
public void setRequired(Boolean required) {
this.required = required;
}
}