azkaban.project.ProjectLogEvent Maven / Gradle / Ivy
/*
* Copyright 2012 LinkedIn Corp.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package azkaban.project;
public class ProjectLogEvent {
private final int projectId;
private final String user;
private final long time;
private final EventType type;
private final String message;
public ProjectLogEvent(final int projectId, final EventType type, final long time,
final String user,
final String message) {
this.projectId = projectId;
this.user = user;
this.time = time;
this.type = type;
this.message = message;
}
public int getProjectId() {
return this.projectId;
}
public String getUser() {
return this.user;
}
public long getTime() {
return this.time;
}
public EventType getType() {
return this.type;
}
public String getMessage() {
return this.message;
}
/**
* Log event type messages. Do not change the numeric representation of each enum.
*
* Only represent from 0 to 255 different codes.
*/
public static enum EventType {
ERROR(128),
CREATED(1),
DELETED(2),
USER_PERMISSION(3),
GROUP_PERMISSION(4),
DESCRIPTION(5),
UPLOADED(6),
SCHEDULE(7),
SLA(8),
PROXY_USER(9),
PURGE(10),
PROPERTY_OVERRIDE(11);
private final int numVal;
EventType(final int numVal) {
this.numVal = numVal;
}
public static EventType fromInteger(final int x) {
switch (x) {
case 1:
return CREATED;
case 2:
return DELETED;
case 3:
return USER_PERMISSION;
case 4:
return GROUP_PERMISSION;
case 5:
return DESCRIPTION;
case 6:
return UPLOADED;
case 7:
return SCHEDULE;
case 8:
return SLA;
case 9:
return PROXY_USER;
case 10:
return PURGE;
case 11:
return PROPERTY_OVERRIDE;
case 128:
return ERROR;
default:
return ERROR;
}
}
public int getNumVal() {
return this.numVal;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy