001    /**
002     * Copyright (c) 2000-2013 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            @Override
036            public int compareTo(Dummy dummy) {
037                    return 0;
038            }
039    
040            @Override
041            public Class<?> getModelClass() {
042                    return DummyImpl.class;
043            }
044    
045            @Override
046            public String getModelClassName() {
047                    return DummyImpl.class.getName();
048            }
049    
050            @Override
051            public Serializable getPrimaryKeyObj() {
052                    return StringPool.BLANK;
053            }
054    
055            @Override
056            public void resetOriginalValues() {
057            }
058    
059            @Override
060            public void setPrimaryKeyObj(Serializable primaryKeyObj) {
061            }
062    
063            @Override
064            public String toXmlString() {
065                    return StringPool.BLANK;
066            }
067    
068    }