blob: ee1ac49075210f4f350e97a1c5f03779778e19a9 [file] [log] [blame]
/*
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.airavata.datacat.models;
public class OutputMonitorMessage {
private String experimentID;
private String experimentName;
private String ownerId;
private String gatewayId;
private String outputPath;
private String applicationName;
private String host;
private String fileMonitorMessageType;
public String getExperimentID() {
return experimentID;
}
public void setExperimentID(String experimentID) {
this.experimentID = experimentID;
}
public String getOutputPath() {
return outputPath;
}
public void setOutputPath(String outputPath) {
this.outputPath = outputPath;
}
public String getFileMonitorMessageType() {
return fileMonitorMessageType;
}
public void setFileMonitorMessageType(String fileMonitorMessageType) {
this.fileMonitorMessageType = fileMonitorMessageType;
}
public String getExperimentName() {
return experimentName;
}
public void setExperimentName(String experimentName) {
this.experimentName = experimentName;
}
public String getOwnerId() {
return ownerId;
}
public void setOwnerId(String ownerId) {
this.ownerId = ownerId;
}
public String getGatewayId() {
return gatewayId;
}
public void setGatewayId(String gatewayId) {
this.gatewayId = gatewayId;
}
public String getApplicationName() {
return applicationName;
}
public void setApplicationName(String applicationName) {
this.applicationName = applicationName;
}
public String getHost() {
return host;
}
public void setHost(String host) {
this.host = host;
}
}