Uses of Class
org.gitlab4j.api.models.CustomAttribute
-
Packages that use 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 userMethods 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>
User. getCustomAttributes()
Method parameters in org.gitlab4j.api.models with type arguments of type CustomAttribute Modifier and Type Method Description void
User. setCustomAttributes(List<CustomAttribute> customAttributes)
User
User. withCustomAttributes(List<CustomAttribute> customAttributes)
-