001
014
015 package com.liferay.portal.model;
016
017
026 public class UserGroupRoleWrapper implements UserGroupRole {
027 public UserGroupRoleWrapper(UserGroupRole userGroupRole) {
028 _userGroupRole = userGroupRole;
029 }
030
031
036 public com.liferay.portal.service.persistence.UserGroupRolePK getPrimaryKey() {
037 return _userGroupRole.getPrimaryKey();
038 }
039
040
045 public void setPrimaryKey(
046 com.liferay.portal.service.persistence.UserGroupRolePK pk) {
047 _userGroupRole.setPrimaryKey(pk);
048 }
049
050
055 public long getUserId() {
056 return _userGroupRole.getUserId();
057 }
058
059
064 public void setUserId(long userId) {
065 _userGroupRole.setUserId(userId);
066 }
067
068
074 public java.lang.String getUserUuid()
075 throws com.liferay.portal.kernel.exception.SystemException {
076 return _userGroupRole.getUserUuid();
077 }
078
079
084 public void setUserUuid(java.lang.String userUuid) {
085 _userGroupRole.setUserUuid(userUuid);
086 }
087
088
093 public long getGroupId() {
094 return _userGroupRole.getGroupId();
095 }
096
097
102 public void setGroupId(long groupId) {
103 _userGroupRole.setGroupId(groupId);
104 }
105
106
111 public long getRoleId() {
112 return _userGroupRole.getRoleId();
113 }
114
115
120 public void setRoleId(long roleId) {
121 _userGroupRole.setRoleId(roleId);
122 }
123
124 public boolean isNew() {
125 return _userGroupRole.isNew();
126 }
127
128 public void setNew(boolean n) {
129 _userGroupRole.setNew(n);
130 }
131
132 public boolean isCachedModel() {
133 return _userGroupRole.isCachedModel();
134 }
135
136 public void setCachedModel(boolean cachedModel) {
137 _userGroupRole.setCachedModel(cachedModel);
138 }
139
140 public boolean isEscapedModel() {
141 return _userGroupRole.isEscapedModel();
142 }
143
144 public void setEscapedModel(boolean escapedModel) {
145 _userGroupRole.setEscapedModel(escapedModel);
146 }
147
148 public java.io.Serializable getPrimaryKeyObj() {
149 return _userGroupRole.getPrimaryKeyObj();
150 }
151
152 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
153 return _userGroupRole.getExpandoBridge();
154 }
155
156 public void setExpandoBridgeAttributes(
157 com.liferay.portal.service.ServiceContext serviceContext) {
158 _userGroupRole.setExpandoBridgeAttributes(serviceContext);
159 }
160
161 public java.lang.Object clone() {
162 return _userGroupRole.clone();
163 }
164
165 public int compareTo(com.liferay.portal.model.UserGroupRole userGroupRole) {
166 return _userGroupRole.compareTo(userGroupRole);
167 }
168
169 public int hashCode() {
170 return _userGroupRole.hashCode();
171 }
172
173 public com.liferay.portal.model.UserGroupRole toEscapedModel() {
174 return _userGroupRole.toEscapedModel();
175 }
176
177 public java.lang.String toString() {
178 return _userGroupRole.toString();
179 }
180
181 public java.lang.String toXmlString() {
182 return _userGroupRole.toXmlString();
183 }
184
185 public com.liferay.portal.model.Group getGroup()
186 throws com.liferay.portal.kernel.exception.PortalException,
187 com.liferay.portal.kernel.exception.SystemException {
188 return _userGroupRole.getGroup();
189 }
190
191 public com.liferay.portal.model.Role getRole()
192 throws com.liferay.portal.kernel.exception.PortalException,
193 com.liferay.portal.kernel.exception.SystemException {
194 return _userGroupRole.getRole();
195 }
196
197 public com.liferay.portal.model.User getUser()
198 throws com.liferay.portal.kernel.exception.PortalException,
199 com.liferay.portal.kernel.exception.SystemException {
200 return _userGroupRole.getUser();
201 }
202
203 public UserGroupRole getWrappedUserGroupRole() {
204 return _userGroupRole;
205 }
206
207 private UserGroupRole _userGroupRole;
208 }