io.orangebeard.client.entity.suite.Suite Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
Orangebeard Java Client, to be used in Orangebeard Java Listeners
package io.orangebeard.client.entity.suite;
import java.util.List;
import java.util.UUID;
import lombok.AllArgsConstructor;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.NoArgsConstructor;
@Getter
@AllArgsConstructor
@NoArgsConstructor
@EqualsAndHashCode
public class Suite {
private UUID suiteUUID;
private UUID parentUUID;
private String localSuiteName;
private List fullSuitePath;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy