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

org.example.migration.model.ClientMigrationInfo Maven / Gradle / Ivy

The newest version!
package org.example.migration.model;

public class ClientMigrationInfo {
    private String clientUUID;
    private String clientType;

    public ClientMigrationInfo(String clientUUID, String clientType) {
        this.clientUUID = clientUUID;
        this.clientType = clientType;
    }
    public ClientMigrationInfo() {
    }
// getters and setters

    public String getClientUUID() {
        return clientUUID;
    }

    public void setClientUUID(String clientUUID) {
        this.clientUUID = clientUUID;
    }

    public String getClientType() {
        return clientType;
    }

    public void setClientType(String clientType) {
        this.clientType = clientType;
    }

    // similar to other classes, validate inputs in setters if needed.
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy