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

org.bif.protocol.bid.service.ServiceBase Maven / Gradle / Ivy

The newest version!
package org.bif.protocol.bid.service;

public class ServiceBase {
    private String id;
    private String type;
    private String serviceEndpoint;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public String getServiceEndpoint() {
        return serviceEndpoint;
    }

    public void setServiceEndpoint(String serviceEndpoint) {
        this.serviceEndpoint = serviceEndpoint;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy