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

com.societegenerale.commons.plugin.model.ApplyOn Maven / Gradle / Ivy

package com.societegenerale.commons.plugin.model;


public class ApplyOn {

  private String packageName;


  private String scope;

  //default constructor is required at runtime
  public ApplyOn() {

  }

  //convenience constructor when calling from unit tests
  public ApplyOn(String packageName, String scope) {
    this.packageName = packageName;
    this.scope = scope;
  }

  public String getPackageName() {
    return packageName;
  }

  public String getScope() {
    return scope;
  }

  public void setPackageName(String packageName) {
    this.packageName = packageName;
  }

  public void setScope(String scope) {
    this.scope = scope;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy