Package jetbrains.buildServer.users
Interface PropertyHolder
-
- All Known Subinterfaces:
SPropertyHolder,SUser,SUserGroup,User,UserEx,UserGroup,UserGroupEx
- All Known Implementing Classes:
AllUsersGroup,AssociatedUser,BaseUser,DeletedUserGroup,InMemoryUser,PropertyHolderImpl,RestrictedUserImpl,SecuredUser,SecuredUserGroup,SimpleUserData,TestUser,UserData,UserGroupImpl,UserImpl
public interface PropertyHolderProperty holder- Since:
- 9.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetBooleanProperty(PropertyKey propertyKey)Returns value of the boolean propertyMap<PropertyKey,String>getProperties()Returns map of the propertiesStringgetPropertyValue(PropertyKey propertyKey)Returns value of the property with specified key
-
-
-
Method Detail
-
getPropertyValue
@Nullable String getPropertyValue(PropertyKey propertyKey)
Returns value of the property with specified key- Parameters:
propertyKey- value of the property with specified key- Returns:
- value of the property with specified key
-
getBooleanProperty
boolean getBooleanProperty(PropertyKey propertyKey)
Returns value of the boolean property- Parameters:
propertyKey- property key- Returns:
- value
-
getProperties
@NotNull Map<PropertyKey,String> getProperties()
Returns map of the properties- Returns:
- map of the properties
-
-