001    /**
002     * Copyright (c) 2000-2010 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.portal.model;
016    
017    import com.liferay.portal.kernel.annotation.AutoEscape;
018    import com.liferay.portal.service.ServiceContext;
019    
020    import com.liferay.portlet.expando.model.ExpandoBridge;
021    
022    import java.io.Serializable;
023    
024    /**
025     * The base model interface for the ServiceComponent service. Represents a row in the "ServiceComponent" database table, with each column mapped to a property of this class.
026     *
027     * <p>
028     * This interface and its corresponding implementation {@link com.liferay.portal.model.impl.ServiceComponentModelImpl} exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in {@link com.liferay.portal.model.impl.ServiceComponentImpl}.
029     * </p>
030     *
031     * <p>
032     * Never modify or reference this interface directly. All methods that expect a service component model instance should use the {@link ServiceComponent} interface instead.
033     * </p>
034     *
035     * @author Brian Wing Shun Chan
036     * @see ServiceComponent
037     * @see com.liferay.portal.model.impl.ServiceComponentImpl
038     * @see com.liferay.portal.model.impl.ServiceComponentModelImpl
039     * @generated
040     */
041    public interface ServiceComponentModel extends BaseModel<ServiceComponent> {
042            /**
043             * Gets the primary key of this service component.
044             *
045             * @return the primary key of this service component
046             */
047            public long getPrimaryKey();
048    
049            /**
050             * Sets the primary key of this service component
051             *
052             * @param pk the primary key of this service component
053             */
054            public void setPrimaryKey(long pk);
055    
056            /**
057             * Gets the service component id of this service component.
058             *
059             * @return the service component id of this service component
060             */
061            public long getServiceComponentId();
062    
063            /**
064             * Sets the service component id of this service component.
065             *
066             * @param serviceComponentId the service component id of this service component
067             */
068            public void setServiceComponentId(long serviceComponentId);
069    
070            /**
071             * Gets the build namespace of this service component.
072             *
073             * @return the build namespace of this service component
074             */
075            @AutoEscape
076            public String getBuildNamespace();
077    
078            /**
079             * Sets the build namespace of this service component.
080             *
081             * @param buildNamespace the build namespace of this service component
082             */
083            public void setBuildNamespace(String buildNamespace);
084    
085            /**
086             * Gets the build number of this service component.
087             *
088             * @return the build number of this service component
089             */
090            public long getBuildNumber();
091    
092            /**
093             * Sets the build number of this service component.
094             *
095             * @param buildNumber the build number of this service component
096             */
097            public void setBuildNumber(long buildNumber);
098    
099            /**
100             * Gets the build date of this service component.
101             *
102             * @return the build date of this service component
103             */
104            public long getBuildDate();
105    
106            /**
107             * Sets the build date of this service component.
108             *
109             * @param buildDate the build date of this service component
110             */
111            public void setBuildDate(long buildDate);
112    
113            /**
114             * Gets the data of this service component.
115             *
116             * @return the data of this service component
117             */
118            @AutoEscape
119            public String getData();
120    
121            /**
122             * Sets the data of this service component.
123             *
124             * @param data the data of this service component
125             */
126            public void setData(String data);
127    
128            /**
129             * Gets a copy of this service component as an escaped model instance by wrapping it with an {@link com.liferay.portal.kernel.bean.AutoEscapeBeanHandler}.
130             *
131             * @return the escaped model instance
132             * @see com.liferay.portal.kernel.bean.AutoEscapeBeanHandler
133             */
134            public ServiceComponent toEscapedModel();
135    
136            public boolean isNew();
137    
138            public void setNew(boolean n);
139    
140            public boolean isCachedModel();
141    
142            public void setCachedModel(boolean cachedModel);
143    
144            public boolean isEscapedModel();
145    
146            public void setEscapedModel(boolean escapedModel);
147    
148            public Serializable getPrimaryKeyObj();
149    
150            public ExpandoBridge getExpandoBridge();
151    
152            public void setExpandoBridgeAttributes(ServiceContext serviceContext);
153    
154            public Object clone();
155    
156            public int compareTo(ServiceComponent serviceComponent);
157    
158            public int hashCode();
159    
160            public String toString();
161    
162            public String toXmlString();
163    }