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

io.openmanufacturing.sds.aspectmodel.java.JavaArtifact Maven / Gradle / Ivy

/*
 * Copyright (c) 2021 Robert Bosch Manufacturing Solutions GmbH
 *
 * See the AUTHORS file(s) distributed with this work for additional
 * information regarding authorship. 
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at https://mozilla.org/MPL/2.0/.
 *
 * SPDX-License-Identifier: MPL-2.0
 */

package io.openmanufacturing.sds.aspectmodel.java;

import io.openmanufacturing.sds.aspectmodel.generator.Artifact;

/**
 * An {@link Artifact} that represents a Java class
 */
public class JavaArtifact implements Artifact {
   private final String content;
   private final String filename;
   private final String javaPackageName;

   public JavaArtifact( final String content, final String filename, final String javaPackageName ) {
      this.content = content;
      this.filename = filename;
      this.javaPackageName = javaPackageName;
   }

   @Override
   public String getContent() {
      return content;
   }

   @Override
   public QualifiedName getId() {
      return new QualifiedName( filename, javaPackageName );
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy