com.capitalone.dashboard.editors.CaseInsensitiveBuildStatusEditor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-audit Show documentation
Show all versions of api-audit Show documentation
Hygieia Audit Rest API Layer
package com.capitalone.dashboard.editors;
import com.capitalone.dashboard.model.BuildStatus;
import java.beans.PropertyEditorSupport;
/**
* Property editor that translates text into a BuildStatus in a case insensitive manner.
*/
public class CaseInsensitiveBuildStatusEditor extends PropertyEditorSupport {
@Override
public void setAsText(String text) throws IllegalArgumentException {
setValue(BuildStatus.fromString(text));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy