com.labs64.utils.swid.support.NullIdGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swid-generator Show documentation
Show all versions of swid-generator Show documentation
SoftWare IDentification (SWID) Tags Generator
The newest version!
package com.labs64.utils.swid.support;
/**
* This generator always returns null
as element identifier.
*/
public class NullIdGenerator implements IdGenerator {
@Override
public String nextId() {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy