
org.bedework.calfacade.BwCollectionLastmod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bw-calendar-facade Show documentation
Show all versions of bw-calendar-facade Show documentation
Common calendar classes and code for bedework
The newest version!
/* ********************************************************************
Licensed to Jasig under one or more contributor license
agreements. See the NOTICE file distributed with this work
for additional information regarding copyright ownership.
Jasig 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.bedework.calfacade;
import org.bedework.calfacade.annotations.NoDump;
import org.bedework.calfacade.annotations.NoWrap;
import org.bedework.calfacade.base.BwLastMod;
import java.util.Date;
/** Concrete class so we can map this in hibernate
*
* @author Mike Douglass
* @version 1.0
*/
public class BwCollectionLastmod extends BwLastMod {
/* Set from the entity value */
private String path;
/** No arg constructor for hibernate
*
*/
public BwCollectionLastmod() {
super(null);
}
/** No date constructor
*
* @param dbEntity collection
*/
public BwCollectionLastmod(final BwCalendar dbEntity) {
super(dbEntity);
if (dbEntity != null) {
setPath(dbEntity.getPath());
} else {
setPath(null);
}
}
/** Constructor to set last mod
* @param dbEntity collection
* @param dt Date lastmod
*/
public BwCollectionLastmod(final BwCalendar dbEntity, final Date dt) {
super(dbEntity, dt);
if (dbEntity != null) {
setPath(dbEntity.getPath());
} else {
setPath(null);
}
}
/** Constructor to set last mod
* @param dbEntity collection
* @param timestamp lastmod
*/
public BwCollectionLastmod(final BwCalendar dbEntity,
final String timestamp) {
super(dbEntity);
if (dbEntity != null) {
setPath(dbEntity.getPath());
} else {
setPath(null);
}
setTimestamp(timestamp);
}
/**
* @param val collection
*/
@Override
public void setDbEntity(final BwCalendar val) {
super.setDbEntity(val);
if (val != null) {
setPath(val.getPath());
} else {
setPath(null);
}
}
/** Set the path
*
* @param val String path
*/
public void setPath(final String val) {
path = val;
}
/** Get the path
*
* @return String path
*/
@NoDump
public String getPath() {
return path;
}
@Override
@NoWrap
public int compareTo(final BwCollectionLastmod that) {
if (this == that) {
return 0;
}
final int res = getTagValue().compareTo(that.getTagValue());
if (res != 0) {
return res;
}
return getPath().compareTo(that.getPath());
}
@Override
public Object clone() {
final BwCollectionLastmod lm = new BwCollectionLastmod();
lm.setPath(getPath());
lm.setSequence(getSequence());
return lm;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy