package com.vci.server.base.persistence.event; import org.hibernate.Session; import com.vci.common.objects.UserEntity; public class PostDeleteQueryEvent extends AbstractQueryEvent{ private String id = null; private String value = null; private String[] props = null; private String[] values = null; private String className = null; private Object obj = null; private Object[] objs = null; public PostDeleteQueryEvent(Session session, String id, String value, Object obj, UserEntity userEntity) { super(session, userEntity); this.id = id; this.value = value; this.obj = obj; } public PostDeleteQueryEvent(Session session, String id, String[] values, Object[] objs, UserEntity userEntity) { super(session, userEntity); this.id = id; this.values = values; this.objs = objs; } public PostDeleteQueryEvent(Session session, String[] props, String[] values, String className, UserEntity userEntity) { super(session, userEntity); this.props = props; this.values = values; this.className = className; } public String getId() { return this.id; } public String getValue() { return this.value; } public String getClassName() { return this.className; } public String[] getValues() { return this.values; } public String[] getProps() { return this.props; } public Object getObj() { return obj; } public Object[] getObjs() { return objs; } }