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

org.camunda.bpm.licensebook.Module Maven / Gradle / Ivy

The newest version!
/*
 * Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH
 * under one or more contributor license agreements. Licensed under a commercial license.
 * You may not use this file except in compliance with the commercial license.
 */
package org.camunda.bpm.licensebook;

public class Module {

  protected String name;
  
  public Module(String name) {
    this.name = name;
  }
  
  public String getName() {
    return name;
  }
  
  public static Module fromDependencyName(String name) {
    return new Module(name);
  }
  
  @Override
  public String toString() {
    return name;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy