blob: ce393b11d0520e5e06ea47996e7f2b84334a7bf9 [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.ode.daohib.bpel.hobj;
import java.util.Date;
/**
* Base class for Hibernate objects providing auto-generated key, create
* timestamp and lock fields.
*/
public class HObject {
private Long _id;
private Date _created;
private int _lock;
/** Constructor. */
public HObject() {
super();
setLock(0);
}
/**
* Auto-gnerated creation timestamp.
*
* @hibernate.property column="INSERT_TIME" type="timestamp"
*/
public Date getCreated() {
return _created;
}
public void setCreated(Date created) {
_created = created;
}
/**
* Auto-generated primary key.
*
* @hibernate.id generator-class="native" column="ID"
*/
public Long getId() {
return _id;
}
public void setId(Long id) {
_id = id;
}
/**
* @hibernate.property column="MLOCK" not-null="true"
*/
public int getLock() {
return _lock;
}
public void setLock(int lock) {
_lock = lock;
}
public String toString() {
return this.getClass()+"{id="+_id+"}";
}
}