@Evolving public interface FilesetChange
Modifier and Type | Interface and Description |
---|---|
static class |
FilesetChange.RemoveProperty
A fileset change to remove a property from the fileset.
|
static class |
FilesetChange.RenameFileset
A fileset change to rename the fileset.
|
static class |
FilesetChange.SetProperty
A fileset change to set the property and value for the fileset.
|
static class |
FilesetChange.UpdateFilesetComment
A fileset change to update the fileset comment.
|
Modifier and Type | Method and Description |
---|---|
static FilesetChange |
removeProperty(java.lang.String property)
Creates a new fileset change to remove a property from the fileset.
|
static FilesetChange |
rename(java.lang.String newName)
Creates a new fileset change to rename the fileset.
|
static FilesetChange |
setProperty(java.lang.String property,
java.lang.String value)
Creates a new fileset change to set the property and value for the fileset.
|
static FilesetChange |
updateComment(java.lang.String newComment)
Creates a new fileset change to update the fileset comment.
|
static FilesetChange rename(java.lang.String newName)
newName
- The new name of the fileset.static FilesetChange updateComment(java.lang.String newComment)
newComment
- The new comment for the fileset.static FilesetChange setProperty(java.lang.String property, java.lang.String value)
property
- The property name to set.value
- The value to set the property to.static FilesetChange removeProperty(java.lang.String property)
property
- The property name to remove.