com.perforce.p4java.core
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 Summary
 String getAction()
           
 int getChangelistId()
           
 String getClientName()
           
 Date getDate()
           
 String getJobId()
           
 String getStatus()
           
 String getUserName()
           
 void setAction(String action)
           
 void setChangelistId(int changelistId)
           
 void setClientName(String clientName)
           
 void setDate(Date date)
           
 void setJobId(String jobId)
           
 void setStatus(String status)
           
 void setUserName(String userName)
           
 
Methods inherited from interface com.perforce.p4java.core.IServerResource
canRefresh, canUpdate, refresh, setServer, update, update, update
 

Method Detail

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)


Copyright © 2015 Perforce Software. All Rights Reserved.