com.kero.security.lang.provider.CompositeProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Kero-Security Show documentation
Show all versions of Kero-Security Show documentation
Kero-Security is a library for statically controlling access to properties of objects / classes.
The newest version!
package com.kero.security.lang.provider;
import java.util.Set;
import com.kero.security.lang.collections.RootNodeList;
public class CompositeProvider implements KsdlProvider {
private Set sources;
public CompositeProvider(Set sources) {
this.sources = sources;
}
@Override
public RootNodeList getRoots() {
RootNodeList result = new RootNodeList();
for(KsdlProvider source : sources) {
result.addAll(source.getRoots());
}
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy