org.apache.hadoop.yarn.api.records.timeline
Class TimelinePutResponse.TimelinePutError

java.lang.Object
  extended by org.apache.hadoop.yarn.api.records.timeline.TimelinePutResponse.TimelinePutError
Enclosing class:
TimelinePutResponse

@InterfaceAudience.Public
@InterfaceStability.Unstable
public static class TimelinePutResponse.TimelinePutError
extends Object

A class that holds the error code for one entity.


Field Summary
static int IO_EXCEPTION
          Error code returned if an IOException is encountered when putting an entity.
static int NO_START_TIME
          Error code returned when no start time can be found when putting an entity.
 
Constructor Summary
TimelinePutResponse.TimelinePutError()
           
 
Method Summary
 String getEntityId()
          Get the entity Id
 String getEntityType()
          Get the entity type
 int getErrorCode()
          Get the error code
 void setEntityId(String entityId)
          Set the entity Id
 void setEntityType(String entityType)
          Set the entity type
 void setErrorCode(int errorCode)
          Set the error code to the given error code
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

NO_START_TIME

public static final int NO_START_TIME
Error code returned when no start time can be found when putting an entity. This occurs when the entity does not already exist in the store and it is put with no start time or events specified.

See Also:
Constant Field Values

IO_EXCEPTION

public static final int IO_EXCEPTION
Error code returned if an IOException is encountered when putting an entity.

See Also:
Constant Field Values
Constructor Detail

TimelinePutResponse.TimelinePutError

public TimelinePutResponse.TimelinePutError()
Method Detail

getEntityId

public String getEntityId()
Get the entity Id

Returns:
the entity Id

setEntityId

public void setEntityId(String entityId)
Set the entity Id

Parameters:
entityId - the entity Id

getEntityType

public String getEntityType()
Get the entity type

Returns:
the entity type

setEntityType

public void setEntityType(String entityType)
Set the entity type

Parameters:
entityType - the entity type

getErrorCode

public int getErrorCode()
Get the error code

Returns:
an error code

setErrorCode

public void setErrorCode(int errorCode)
Set the error code to the given error code

Parameters:
errorCode - an error code


Copyright © 2014 Apache Software Foundation. All Rights Reserved.