001 /** 002 * Copyright (c) 2000-2010 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; 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 public boolean isNew(); 129 130 public void setNew(boolean n); 131 132 public boolean isCachedModel(); 133 134 public void setCachedModel(boolean cachedModel); 135 136 public boolean isEscapedModel(); 137 138 public void setEscapedModel(boolean escapedModel); 139 140 public Serializable getPrimaryKeyObj(); 141 142 public ExpandoBridge getExpandoBridge(); 143 144 public void setExpandoBridgeAttributes(ServiceContext serviceContext); 145 146 public Object clone(); 147 148 public int compareTo(ServiceComponent serviceComponent); 149 150 public int hashCode(); 151 152 public ServiceComponent toEscapedModel(); 153 154 public String toString(); 155 156 public String toXmlString(); 157 }