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

com.kapeta.spring.config.InstanceProviderValue Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
/*
 * Copyright 2023 Kapeta Inc.
 * SPDX-License-Identifier: MIT
 */
package com.kapeta.spring.config;

public class InstanceProviderValue {
    private String id;
    private String portType;
    private String resourceName;

    public String getId() {
        return id;
    }

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

    public String getPortType() {
        return portType;
    }

    public void setPortType(String portType) {
        this.portType = portType;
    }

    public String getResourceName() {
        return resourceName;
    }

    public void setResourceName(String resourceName) {
        this.resourceName = resourceName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy