blob: 9845acd9ecd2136e94ea78727a249f1f16abd318 [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.
*/
///*
// *
// * 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.api.server.listener;
//
//import org.apache.airavata.common.utils.listener.AbstractStateChangeRequest;
//import org.apache.airavata.gfac.core.monitor.ExperimentIdentity;
//import org.apache.airavata.model.experiment.ExperimentModelState;
//
///**
// * This is the primary job state object used in
// * through out the monitor module. This use airavata-data-model JobState enum
// * Ideally after processing each event or monitoring message from remote system
// * Each monitoring implementation has to return this object with a state and
// * the monitoring ID
// */
//public class ExperimentStatusChangedEvent extends AbstractStateChangeRequest {
// private ExperimentState state;
// private ExperimentIdentity identity;
//
// // this constructor can be used in Qstat monitor to handle errors
// public ExperimentStatusChangedEvent() {
// }
//
// public ExperimentStatusChangedEvent(ExperimentIdentity experimentIdentity, ExperimentState state) {
// this.state = state;
// setIdentity(experimentIdentity);
// }
//
// public ExperimentState getState() {
// return state;
// }
//
// public void setState(ExperimentState state) {
// this.state = state;
// }
//
// public ExperimentIdentity getIdentity() {
// return identity;
// }
//
// public void setIdentity(ExperimentIdentity identity) {
// this.identity = identity;
// }
//
//
//}