001
014
015 package com.liferay.portal.model;
016
017
026 public class UserGroupGroupRoleWrapper implements UserGroupGroupRole {
027 public UserGroupGroupRoleWrapper(UserGroupGroupRole userGroupGroupRole) {
028 _userGroupGroupRole = userGroupGroupRole;
029 }
030
031
036 public com.liferay.portal.service.persistence.UserGroupGroupRolePK getPrimaryKey() {
037 return _userGroupGroupRole.getPrimaryKey();
038 }
039
040
045 public void setPrimaryKey(
046 com.liferay.portal.service.persistence.UserGroupGroupRolePK pk) {
047 _userGroupGroupRole.setPrimaryKey(pk);
048 }
049
050
055 public long getUserGroupId() {
056 return _userGroupGroupRole.getUserGroupId();
057 }
058
059
064 public void setUserGroupId(long userGroupId) {
065 _userGroupGroupRole.setUserGroupId(userGroupId);
066 }
067
068
073 public long getGroupId() {
074 return _userGroupGroupRole.getGroupId();
075 }
076
077
082 public void setGroupId(long groupId) {
083 _userGroupGroupRole.setGroupId(groupId);
084 }
085
086
091 public long getRoleId() {
092 return _userGroupGroupRole.getRoleId();
093 }
094
095
100 public void setRoleId(long roleId) {
101 _userGroupGroupRole.setRoleId(roleId);
102 }
103
104 public boolean isNew() {
105 return _userGroupGroupRole.isNew();
106 }
107
108 public void setNew(boolean n) {
109 _userGroupGroupRole.setNew(n);
110 }
111
112 public boolean isCachedModel() {
113 return _userGroupGroupRole.isCachedModel();
114 }
115
116 public void setCachedModel(boolean cachedModel) {
117 _userGroupGroupRole.setCachedModel(cachedModel);
118 }
119
120 public boolean isEscapedModel() {
121 return _userGroupGroupRole.isEscapedModel();
122 }
123
124 public void setEscapedModel(boolean escapedModel) {
125 _userGroupGroupRole.setEscapedModel(escapedModel);
126 }
127
128 public java.io.Serializable getPrimaryKeyObj() {
129 return _userGroupGroupRole.getPrimaryKeyObj();
130 }
131
132 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
133 return _userGroupGroupRole.getExpandoBridge();
134 }
135
136 public void setExpandoBridgeAttributes(
137 com.liferay.portal.service.ServiceContext serviceContext) {
138 _userGroupGroupRole.setExpandoBridgeAttributes(serviceContext);
139 }
140
141 public java.lang.Object clone() {
142 return _userGroupGroupRole.clone();
143 }
144
145 public int compareTo(
146 com.liferay.portal.model.UserGroupGroupRole userGroupGroupRole) {
147 return _userGroupGroupRole.compareTo(userGroupGroupRole);
148 }
149
150 public int hashCode() {
151 return _userGroupGroupRole.hashCode();
152 }
153
154 public com.liferay.portal.model.UserGroupGroupRole toEscapedModel() {
155 return _userGroupGroupRole.toEscapedModel();
156 }
157
158 public java.lang.String toString() {
159 return _userGroupGroupRole.toString();
160 }
161
162 public java.lang.String toXmlString() {
163 return _userGroupGroupRole.toXmlString();
164 }
165
166 public UserGroupGroupRole getWrappedUserGroupGroupRole() {
167 return _userGroupGroupRole;
168 }
169
170 private UserGroupGroupRole _userGroupGroupRole;
171 }