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

com.github.rahulsom.nexusmonitor.Repository.groovy Maven / Gradle / Ivy

The newest version!
package com.github.rahulsom.nexusmonitor

import groovy.transform.CompileStatic

/**
 * Created with IntelliJ IDEA.
 * User: rahulsomasunderam
 * Date: 10/10/13
 * Time: 8:05 AM
 * To change this template use File | Settings | File Templates.
 */
@CompileStatic
class Repository {
  String name
  String feedUrl
  String username = 'admin'
  String password = 'admin123'
  String repoUrl
  List recipients


  String toString() {
    return "com.github.rahulsom.nexusmonitor.Repository{" +
        "name='" + name + '\'' +
        ", feedUrl='" + feedUrl + '\'' +
        ", username='" + username + '\'' +
        ", password='" + password + '\'' +
        ", repoUrl='" + repoUrl + '\'' +
        ", recipients=" + recipients +
        '}'
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy