Interface IFix

All Superinterfaces:
IServerResource
All Known Implementing Classes:
Fix

public interface IFix extends IServerResource
Describes a Perforce job fix record.

Full semantics can be found in the associated full Perforce p4 command line documentation for the 'p4 fix' command. Not all fields are valid for all fixes or circumstances -- test for nullness before using...

Fixes are currently always complete and not refreshable or updateable through the IServerResource methods. Setter methods below will not cause the corresponding fix in the Perforce server to be updated without an explicit update call.

  • Method Details

    • getJobId

      String getJobId()
    • setJobId

      void setJobId(String jobId)
    • getChangelistId

      int getChangelistId()
    • setChangelistId

      void setChangelistId(int changelistId)
    • getDate

      Date getDate()
    • setDate

      void setDate(Date date)
    • getClientName

      String getClientName()
    • setClientName

      void setClientName(String clientName)
    • getUserName

      String getUserName()
    • setUserName

      void setUserName(String userName)
    • getStatus

      String getStatus()
    • setStatus

      void setStatus(String status)
    • getAction

      String getAction()
    • setAction

      void setAction(String action)