com.perforce.p4java.core
Interface IUserSummary
- All Superinterfaces:
- IServerResource
- All Known Subinterfaces:
- IUser
- All Known Implementing Classes:
- User, UserSummary
public interface IUserSummary
- extends IServerResource
Defines a Perforce user summary as returned from an IServer
getUsers method and similar. IUserSummary objects contain
only the summary information returned by the p4 users
command; to get the full user information from the server,
use the IUser interface returned from getUser, etc.
Fields and methods below are basically self-explanatory
and more detailed documentation can be found in the main
p4 documentation. Note that any or all of these methods
are allowed to return null.
IUserSummary objects are complete and neither refreshable nor updateable.
getLoginName
java.lang.String getLoginName()
setLoginName
void setLoginName(java.lang.String loginName)
getUpdate
java.util.Date getUpdate()
setUpdate
void setUpdate(java.util.Date update)
getAccess
java.util.Date getAccess()
setAccess
void setAccess(java.util.Date access)
getFullName
java.lang.String getFullName()
setFullName
void setFullName(java.lang.String fullName)
getEmail
java.lang.String getEmail()
setEmail
void setEmail(java.lang.String email)
Copyright (c) 2008-2010 Perforce Software. All rights reserved.