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

com.tibco.bw.maven.plugin.admin.dto.Service Maven / Gradle / Ivy

Go to download

Plugin Code for Apache Maven and TIBCO BusinessWorks™. This is the Maven Plugin for BW6 and BWCE Build.

There is a newer version: 2.9.9
Show newest version
/*
 * Copyright(c) 2014 TIBCO Software Inc.
 * All rights reserved.
 *
 * This software is confidential and proprietary information of TIBCO Software Inc.
 *
 */

package com.tibco.bw.maven.plugin.admin.dto;

import java.util.ArrayList;
import java.util.Collection;

import javax.xml.bind.annotation.XmlElement;

/**
 * @author Tim Diekmann
 *
 * @since 1.0.0
 */
public class Service {
    private String name;
    private String                             moduleName;
    private final Collection bindings;
    private String                           wsdlInterface;

    public Service() {
        this.bindings = new ArrayList<>();
    }

    /**
     * @return the wsdlInterface
     */
    @XmlElement
    public String getWsdlInterface() {
        return this.wsdlInterface;
    }

    /**
     * @param wsdlInterface
     *            the wsdlInterface to set
     */
    public void setWsdlInterface(final String wsdlInterface) {
        this.wsdlInterface = wsdlInterface;
    }

    /**
     * @param bindings the bindings
     */
    public Service(final Collection bindings) {
        this.bindings = bindings;
    }

    /**
     * @return the name
     */
    @XmlElement
    public String getName() {
        return this.name;
    }

    /**
     * @param name
     *            the name to set
     */
    public void setName(final String name) {
        this.name = name;
    }

    /**
     * @return the bindings
     */
    @XmlElement
    public Collection getBindings() {
        return this.bindings;
    }

    /**
     * @return the moduleName
     */
    @XmlElement
    public String getModuleName() {
        return this.moduleName;
    }

    /**
     * @param moduleName
     *            the moduleName to set
     */
    public void setModuleName(final String moduleName) {
        this.moduleName = moduleName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy