com.kapeta.spring.config.InstanceProviderValue Maven / Gradle / Ivy
/*
* 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;
}
}