
com.atlan.generators.ListGenerator Maven / Gradle / Ivy
// Generated by delombok at Wed Oct 16 22:16:04 UTC 2024
/* SPDX-License-Identifier: Apache-2.0
Copyright 2023 Atlan Pte. Ltd. */
package com.atlan.generators;
import java.util.List;
public class ListGenerator {
private final List items;
private final String generatorName;
public ListGenerator(List items, String generatorName) {
this.items = items;
this.generatorName = generatorName;
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
public List getItems() {
return this.items;
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
public String getGeneratorName() {
return this.generatorName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy