/**
* Copyright (c) 2000-present Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
package com.liferay.portal.model.impl;
import com.liferay.portal.kernel.model.Dummy;
import com.liferay.portal.kernel.model.impl.BaseModelImpl;
import com.liferay.portal.kernel.util.StringPool;
import java.io.Serializable;
/**
* @author Brian Wing Shun Chan
*/
public class DummyImpl extends BaseModelImpl<Dummy> implements Dummy {
@Override
public Object clone() {
return new DummyImpl();
}
@Override
public int compareTo(Dummy dummy) {
return 0;
}
@Override
public Class<?> getModelClass() {
return DummyImpl.class;
}
@Override
public String getModelClassName() {
return DummyImpl.class.getName();
}
@Override
public Serializable getPrimaryKeyObj() {
return StringPool.BLANK;
}
@Override
public boolean isEntityCacheEnabled() {
return false;
}
@Override
public boolean isFinderCacheEnabled() {
return false;
}
@Override
public void resetOriginalValues() {
}
@Override
public void setPrimaryKeyObj(Serializable primaryKeyObj) {
}
@Override
public String toXmlString() {
return StringPool.BLANK;
}
}