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

org.codehaus.xfire.spring.config.AbstractSoapBindingBean Maven / Gradle / Ivy

There is a newer version: 1.2.6
Show newest version
package org.codehaus.xfire.spring.config;

import java.util.List;

import javax.xml.namespace.QName;

public abstract class AbstractSoapBindingBean
{
    private String transport;
    private List endpoints;
    private QName name;
    private boolean allowUndefinedEndpoints = true;
    
    public boolean isAllowUndefinedEndpoints()
    {
        return allowUndefinedEndpoints;
    }

    public void setAllowUndefinedEndpoints(boolean allowUndefinedEndpoints)
    {
        this.allowUndefinedEndpoints = allowUndefinedEndpoints;
    }

    public QName getName()
    {
        return name;
    }

    public void setName(QName name)
    {
        this.name = name;
    }

    public String getTransport()
    {
        return transport;
    }

    public void setTransport(String transport)
    {
        this.transport = transport;
    }

    public List getEndpoints()
    {
        return endpoints;
    }

    public void setEndpoints(List endpoints)
    {
        this.endpoints = endpoints;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy