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

com.github.obase.config.Rules Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package com.github.obase.config;

import java.util.LinkedList;
import java.util.List;

class Rules {

	public final String passwd;
	public final List rules = new LinkedList();

	Rules(String passwd) {
		this.passwd = passwd;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy