1
14
15 package com.liferay.portal.model;
16
17
33 public class UserGroupGroupRoleWrapper implements UserGroupGroupRole {
34 public UserGroupGroupRoleWrapper(UserGroupGroupRole userGroupGroupRole) {
35 _userGroupGroupRole = userGroupGroupRole;
36 }
37
38 public com.liferay.portal.service.persistence.UserGroupGroupRolePK getPrimaryKey() {
39 return _userGroupGroupRole.getPrimaryKey();
40 }
41
42 public void setPrimaryKey(
43 com.liferay.portal.service.persistence.UserGroupGroupRolePK pk) {
44 _userGroupGroupRole.setPrimaryKey(pk);
45 }
46
47 public long getUserGroupId() {
48 return _userGroupGroupRole.getUserGroupId();
49 }
50
51 public void setUserGroupId(long userGroupId) {
52 _userGroupGroupRole.setUserGroupId(userGroupId);
53 }
54
55 public long getGroupId() {
56 return _userGroupGroupRole.getGroupId();
57 }
58
59 public void setGroupId(long groupId) {
60 _userGroupGroupRole.setGroupId(groupId);
61 }
62
63 public long getRoleId() {
64 return _userGroupGroupRole.getRoleId();
65 }
66
67 public void setRoleId(long roleId) {
68 _userGroupGroupRole.setRoleId(roleId);
69 }
70
71 public boolean isNew() {
72 return _userGroupGroupRole.isNew();
73 }
74
75 public boolean setNew(boolean n) {
76 return _userGroupGroupRole.setNew(n);
77 }
78
79 public boolean isCachedModel() {
80 return _userGroupGroupRole.isCachedModel();
81 }
82
83 public void setCachedModel(boolean cachedModel) {
84 _userGroupGroupRole.setCachedModel(cachedModel);
85 }
86
87 public boolean isEscapedModel() {
88 return _userGroupGroupRole.isEscapedModel();
89 }
90
91 public void setEscapedModel(boolean escapedModel) {
92 _userGroupGroupRole.setEscapedModel(escapedModel);
93 }
94
95 public java.io.Serializable getPrimaryKeyObj() {
96 return _userGroupGroupRole.getPrimaryKeyObj();
97 }
98
99 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
100 return _userGroupGroupRole.getExpandoBridge();
101 }
102
103 public void setExpandoBridgeAttributes(
104 com.liferay.portal.service.ServiceContext serviceContext) {
105 _userGroupGroupRole.setExpandoBridgeAttributes(serviceContext);
106 }
107
108 public java.lang.Object clone() {
109 return _userGroupGroupRole.clone();
110 }
111
112 public int compareTo(
113 com.liferay.portal.model.UserGroupGroupRole userGroupGroupRole) {
114 return _userGroupGroupRole.compareTo(userGroupGroupRole);
115 }
116
117 public int hashCode() {
118 return _userGroupGroupRole.hashCode();
119 }
120
121 public com.liferay.portal.model.UserGroupGroupRole toEscapedModel() {
122 return _userGroupGroupRole.toEscapedModel();
123 }
124
125 public java.lang.String toString() {
126 return _userGroupGroupRole.toString();
127 }
128
129 public java.lang.String toXmlString() {
130 return _userGroupGroupRole.toXmlString();
131 }
132
133 public UserGroupGroupRole getWrappedUserGroupGroupRole() {
134 return _userGroupGroupRole;
135 }
136
137 private UserGroupGroupRole _userGroupGroupRole;
138 }