001    /**
002     * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.dynamicdatamapping.model.impl;
016    
017    import com.liferay.portal.kernel.util.StringBundler;
018    import com.liferay.portal.model.CacheModel;
019    
020    import com.liferay.portlet.dynamicdatamapping.model.DDMStructureLink;
021    
022    import java.io.Serializable;
023    
024    /**
025     * The cache model class for representing DDMStructureLink in entity cache.
026     *
027     * @author Brian Wing Shun Chan
028     * @see DDMStructureLink
029     * @generated
030     */
031    public class DDMStructureLinkCacheModel implements CacheModel<DDMStructureLink>,
032            Serializable {
033            @Override
034            public String toString() {
035                    StringBundler sb = new StringBundler(9);
036    
037                    sb.append("{structureLinkId=");
038                    sb.append(structureLinkId);
039                    sb.append(", classNameId=");
040                    sb.append(classNameId);
041                    sb.append(", classPK=");
042                    sb.append(classPK);
043                    sb.append(", structureId=");
044                    sb.append(structureId);
045                    sb.append("}");
046    
047                    return sb.toString();
048            }
049    
050            public DDMStructureLink toEntityModel() {
051                    DDMStructureLinkImpl ddmStructureLinkImpl = new DDMStructureLinkImpl();
052    
053                    ddmStructureLinkImpl.setStructureLinkId(structureLinkId);
054                    ddmStructureLinkImpl.setClassNameId(classNameId);
055                    ddmStructureLinkImpl.setClassPK(classPK);
056                    ddmStructureLinkImpl.setStructureId(structureId);
057    
058                    ddmStructureLinkImpl.resetOriginalValues();
059    
060                    return ddmStructureLinkImpl;
061            }
062    
063            public long structureLinkId;
064            public long classNameId;
065            public long classPK;
066            public long structureId;
067    }