Uses of Class
org.gitlab4j.api.models.CustomAttribute
Package | Description |
---|---|
org.gitlab4j.api | |
org.gitlab4j.api.models |
-
Uses of CustomAttribute in org.gitlab4j.api
Methods in org.gitlab4j.api that return CustomAttribute Modifier and Type Method Description CustomAttribute
UserApi. changeCustomAttribute(Object userIdOrUsername, String key, String value)
Changes custom attribute for the given userCustomAttribute
UserApi. changeCustomAttribute(Object userIdOrUsername, CustomAttribute customAttribute)
Change custom attribute for the given userCustomAttribute
UserApi. createCustomAttribute(Object userIdOrUsername, String key, String value)
Creates custom attribute for the given userCustomAttribute
UserApi. createCustomAttribute(Object userIdOrUsername, CustomAttribute customAttribute)
Creates custom attribute for the given userCustomAttribute
ProjectApi. getCustomAttribute(Object projectIdOrPath, String key)
Get a single custom attribute for the specified project.CustomAttribute
ProjectApi. setCustomAttribute(Object projectIdOrPath, String key, String value)
Set a custom attribute for the specified project.Methods in org.gitlab4j.api that return types with arguments of type CustomAttribute Modifier and Type Method Description Optional<CustomAttribute>
ProjectApi. geOptionalCustomAttribute(Object projectIdOrPath, String key)
Get an Optional instance with the value for a single custom attribute for the specified project.List<CustomAttribute>
ProjectApi. getCustomAttributes(Object projectIdOrPath)
Get all custom attributes for the specified project.Pager<CustomAttribute>
ProjectApi. getCustomAttributes(Object projectIdOrPath, int itemsPerPage)
Get a Pager of custom attributes for the specified project.Stream<CustomAttribute>
ProjectApi. getCustomAttributesStream(Object projectIdOrPath)
Get a Stream of all custom attributes for the specified project.Methods in org.gitlab4j.api with parameters of type CustomAttribute Modifier and Type Method Description CustomAttribute
UserApi. changeCustomAttribute(Object userIdOrUsername, CustomAttribute customAttribute)
Change custom attribute for the given userCustomAttribute
UserApi. createCustomAttribute(Object userIdOrUsername, CustomAttribute customAttribute)
Creates custom attribute for the given uservoid
UserApi. deleteCustomAttribute(Object userIdOrUsername, CustomAttribute customAttribute)
Delete a custom attribute for the given user -
Uses of CustomAttribute in org.gitlab4j.api.models
Methods in org.gitlab4j.api.models that return CustomAttribute Modifier and Type Method Description CustomAttribute
CustomAttribute. withKey(String key)
CustomAttribute
CustomAttribute. withValue(String value)
Methods in org.gitlab4j.api.models that return types with arguments of type CustomAttribute Modifier and Type Method Description List<CustomAttribute>
Project. getCustomAttributes()
List<CustomAttribute>
User. getCustomAttributes()
Method parameters in org.gitlab4j.api.models with type arguments of type CustomAttribute Modifier and Type Method Description void
Project. setCustomAttributes(List<CustomAttribute> customAttributes)
void
User. setCustomAttributes(List<CustomAttribute> customAttributes)
User
User. withCustomAttributes(List<CustomAttribute> customAttributes)