net.nemerosa.ontrack.ui.support.IDToString Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ontrack-ui-support Show documentation
Show all versions of ontrack-ui-support Show documentation
Ontrack module: ontrack-ui-support
package net.nemerosa.ontrack.ui.support;
import net.nemerosa.ontrack.model.structure.ID;
import org.springframework.core.convert.converter.Converter;
public class IDToString implements Converter {
@Override
public String convert(ID source) {
return source.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy