/* * Copyright (c) 2005 - 2014, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. * * 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 org.wso2.carbon.event.receiver.core.config; import org.wso2.carbon.utils.multitenancy.MultitenantConstants; public class EventReceiverConfigurationFile { public static enum Status { //Deployed, Waiting for Dependency, Error DEPLOYED, WAITING_FOR_DEPENDENCY, ERROR, WAITING_FOR_STREAM_DEPENDENCY } private String fileName; private String eventReceiverName; private Status status; private String dependency; private String deploymentStatusMessage = ""; private String filePath; private int tenantId= MultitenantConstants.INVALID_TENANT_ID; public EventReceiverConfigurationFile() { this.fileName = fileName; } public Status getStatus() { return status; } public void setStatus(Status status) { this.status = status; } public String getDependency() { return dependency; } public void setDependency(String dependency) { this.dependency = dependency; } public String getDeploymentStatusMessage() { return deploymentStatusMessage; } public void setDeploymentStatusMessage(String deploymentStatusMessage) { this.deploymentStatusMessage = deploymentStatusMessage; } public String getFileName() { return fileName; } public void setFileName(String fileName) { this.fileName = fileName; } public String getFilePath() { return filePath; } public void setFilePath(String filePath) { this.filePath = filePath; } public String getEventReceiverName() { return eventReceiverName; } public void setEventReceiverName(String eventReceiverName) { this.eventReceiverName = eventReceiverName; } public int getTenantId() { return tenantId; } public void setTenantId(int tenantId) { this.tenantId = tenantId; } }