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

org.catools.atlassian.scale.model.CZScaleAttachments Maven / Gradle / Ivy

The newest version!
package org.catools.atlassian.scale.model;

import org.catools.common.collections.CSet;

import java.util.stream.Stream;

public class CZScaleAttachments extends CSet {
  public CZScaleAttachments() {
  }

  public CZScaleAttachments(CZScaleAttachment... c) {
    super(c);
  }

  public CZScaleAttachments(Stream stream) {
    super(stream);
  }

  public CZScaleAttachments(Iterable iterable) {
    super(iterable);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy