001    /**
002     * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portal.model.impl;
016    
017    import com.liferay.portal.kernel.util.StringPool;
018    import com.liferay.portal.model.Dummy;
019    
020    import java.io.Serializable;
021    
022    /**
023     * @author Brian Wing Shun Chan
024     */
025    public class DummyImpl extends BaseModelImpl<Dummy> implements Dummy {
026    
027            public DummyImpl() {
028            }
029    
030            @Override
031            public Object clone() {
032                    return new DummyImpl();
033            }
034    
035            public int compareTo(Dummy dummy) {
036                    return 0;
037            }
038    
039            public Class<?> getModelClass() {
040                    return DummyImpl.class;
041            }
042    
043            public String getModelClassName() {
044                    return DummyImpl.class.getName();
045            }
046    
047            public Serializable getPrimaryKeyObj() {
048                    return StringPool.BLANK;
049            }
050    
051            public void setPrimaryKeyObj(Serializable primaryKeyObj) {
052            }
053    
054            @Override
055            public void resetOriginalValues() {
056            }
057    
058            public String toXmlString() {
059                    return StringPool.BLANK;
060            }
061    
062    }