Class VersionedSettingsStatus
- java.lang.Object
-
- jetbrains.buildServer.serverSide.impl.versionedSettings.VersionedSettingsStatus
-
public class VersionedSettingsStatus extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
VersionedSettingsStatus.Type
-
Constructor Summary
Constructors Constructor Description VersionedSettingsStatus(String description, VersionedSettingsStatus.Type type)
VersionedSettingsStatus(Date timestamp, String description)
VersionedSettingsStatus(Date timestamp, VersionedSettingsStatus.Type type, String description)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static VersionedSettingsStatus
fromJSON(String status)
List<VersionedSettingsError>
getConfigErrors()
String
getDescription()
List<String>
getRequiredContextParameters()
Date
getTimestamp()
VersionedSettingsStatus.Type
getType()
void
setConfigErrors(List<VersionedSettingsError> configErrors)
void
setConfigErrors(VersionedSettingsError.Type errorType, Map<File,String> configErrors, String projectsDirPath)
void
setRequiredContextParameters(List<String> parameters)
String
toJSON()
-
-
-
Constructor Detail
-
VersionedSettingsStatus
public VersionedSettingsStatus(@NotNull String description, @NotNull VersionedSettingsStatus.Type type)
-
VersionedSettingsStatus
public VersionedSettingsStatus(@NotNull Date timestamp, @NotNull String description)
-
VersionedSettingsStatus
public VersionedSettingsStatus(@NotNull Date timestamp, @NotNull VersionedSettingsStatus.Type type, @NotNull String description)
-
-
Method Detail
-
getTimestamp
@NotNull public Date getTimestamp()
-
getDescription
@NotNull public String getDescription()
-
setConfigErrors
public void setConfigErrors(@NotNull VersionedSettingsError.Type errorType, @NotNull Map<File,String> configErrors, @NotNull String projectsDirPath)
-
setConfigErrors
public void setConfigErrors(@NotNull List<VersionedSettingsError> configErrors)
-
getConfigErrors
@NotNull public List<VersionedSettingsError> getConfigErrors()
-
setRequiredContextParameters
public void setRequiredContextParameters(@NotNull List<String> parameters)
-
getType
@NotNull public VersionedSettingsStatus.Type getType()
-
toJSON
public String toJSON()
-
fromJSON
public static VersionedSettingsStatus fromJSON(@NotNull String status) throws com.google.gson.JsonSyntaxException
- Throws:
com.google.gson.JsonSyntaxException
-
-