/* * (C) Copyright 2007-2010 Nuxeo SA (http://nuxeo.com/) and others. * * 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. * * Contributors: * Florent Guillaume */ package org.nuxeo.ecm.core.scheduler; import org.nuxeo.common.xmap.annotation.XNode; import org.nuxeo.common.xmap.annotation.XObject; /** * ScheduleImpl extension definition. */ @XObject("schedule") public class ScheduleImpl implements Schedule { private static final long serialVersionUID = 1L; @XNode("@id") public String id; @XNode("event") public String eventId; // BBB compat with old descriptors. use <event> now for consistency with // EventListenerDescriptor @XNode("eventId") public void setEventId(String eventId) { this.eventId = eventId; } @XNode("eventCategory") public String eventCategory; @XNode("cronExpression") public String cronExpression; @XNode("username") public String username; /** * @since 5.7.3 */ @XNode("@enabled") public boolean enabled = true; @Override public String getId() { return id; } @Override public String getEventId() { return eventId; } @Override public String getEventCategory() { return eventCategory; } @Override public String getCronExpression() { return cronExpression; } @Override public String getUsername() { return username; } @Override public String toString() { return "Schedule " + id + " (cron=" + cronExpression + ')'; } @Override public boolean equals(Object obj) { if (obj == null) { return false; } if (!(obj instanceof Schedule)) { return false; } return id.equals(((Schedule) obj).getId()); } @Override public int hashCode() { return id.hashCode(); } @Override public boolean isEnabled() { return enabled; } }