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

dev.galasa.framework.spi.ras.Artifact Maven / Gradle / Ivy

There is a newer version: 0.37.0
Show newest version
/*
 * Copyright contributors to the Galasa project
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package dev.galasa.framework.spi.ras;

import java.nio.file.Path;

public class Artifact {
   
   private Path artifactPath;
   private String contentType;
   
   public Artifact(Path artifactPath, String contentType) {
      this.artifactPath = artifactPath;
      this.contentType = contentType;
   }
   
   public void setContentType(String contentType) {
      this.contentType = contentType;
   }
   
   public void setArtifactPath(Path artifactPath) {
      this.artifactPath = artifactPath;
   }
   
   public Path getArtifactPath() {
      return this.artifactPath;
   }
   
   public String getContentType() {
      return this.contentType;
   }
   
   
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy