YARN-10544. AMParams.java having un-necessary access identifier static final. Contributed by ANANDA G B.
This commit is contained in:
parent
7dfff496fa
commit
03e42efa30
@ -22,13 +22,13 @@
|
|||||||
* Params constants for the AM webapp and the history webapp.
|
* Params constants for the AM webapp and the history webapp.
|
||||||
*/
|
*/
|
||||||
public interface AMParams {
|
public interface AMParams {
|
||||||
static final String RM_WEB = "rm.web";
|
String RM_WEB = "rm.web";
|
||||||
static final String APP_ID = "app.id";
|
String APP_ID = "app.id";
|
||||||
static final String JOB_ID = "job.id";
|
String JOB_ID = "job.id";
|
||||||
static final String TASK_ID = "task.id";
|
String TASK_ID = "task.id";
|
||||||
static final String TASK_TYPE = "task.type";
|
String TASK_TYPE = "task.type";
|
||||||
static final String TASK_STATE = "task.state";
|
String TASK_STATE = "task.state";
|
||||||
static final String ATTEMPT_STATE = "attempt.state";
|
String ATTEMPT_STATE = "attempt.state";
|
||||||
static final String COUNTER_GROUP = "counter.group";
|
String COUNTER_GROUP = "counter.group";
|
||||||
static final String COUNTER_NAME = "counter.name";
|
String COUNTER_NAME = "counter.name";
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user