001
014
015 package com.liferay.portal.service.http;
016
017 import com.liferay.portal.kernel.log.Log;
018 import com.liferay.portal.kernel.log.LogFactoryUtil;
019 import com.liferay.portal.service.PortalServiceUtil;
020
021 import java.rmi.RemoteException;
022
023
054 public class PortalServiceSoap {
055 public static java.lang.String getAutoDeployDirectory()
056 throws RemoteException {
057 try {
058 java.lang.String returnValue = PortalServiceUtil.getAutoDeployDirectory();
059
060 return returnValue;
061 }
062 catch (Exception e) {
063 _log.error(e, e);
064
065 throw new RemoteException(e.getMessage());
066 }
067 }
068
069 public static int getBuildNumber() throws RemoteException {
070 try {
071 int returnValue = PortalServiceUtil.getBuildNumber();
072
073 return returnValue;
074 }
075 catch (Exception e) {
076 _log.error(e, e);
077
078 throw new RemoteException(e.getMessage());
079 }
080 }
081
082 public static void testAddClassName_Rollback(
083 java.lang.String classNameValue) throws RemoteException {
084 try {
085 PortalServiceUtil.testAddClassName_Rollback(classNameValue);
086 }
087 catch (Exception e) {
088 _log.error(e, e);
089
090 throw new RemoteException(e.getMessage());
091 }
092 }
093
094 public static void testAddClassName_Success(java.lang.String classNameValue)
095 throws RemoteException {
096 try {
097 PortalServiceUtil.testAddClassName_Success(classNameValue);
098 }
099 catch (Exception e) {
100 _log.error(e, e);
101
102 throw new RemoteException(e.getMessage());
103 }
104 }
105
106 public static void testAddClassNameAndTestTransactionPortletBar_PortalRollback(
107 java.lang.String transactionPortletBarText) throws RemoteException {
108 try {
109 PortalServiceUtil.testAddClassNameAndTestTransactionPortletBar_PortalRollback(transactionPortletBarText);
110 }
111 catch (Exception e) {
112 _log.error(e, e);
113
114 throw new RemoteException(e.getMessage());
115 }
116 }
117
118 public static void testAddClassNameAndTestTransactionPortletBar_PortletRollback(
119 java.lang.String transactionPortletBarText) throws RemoteException {
120 try {
121 PortalServiceUtil.testAddClassNameAndTestTransactionPortletBar_PortletRollback(transactionPortletBarText);
122 }
123 catch (Exception e) {
124 _log.error(e, e);
125
126 throw new RemoteException(e.getMessage());
127 }
128 }
129
130 public static void testAddClassNameAndTestTransactionPortletBar_Success(
131 java.lang.String transactionPortletBarText) throws RemoteException {
132 try {
133 PortalServiceUtil.testAddClassNameAndTestTransactionPortletBar_Success(transactionPortletBarText);
134 }
135 catch (Exception e) {
136 _log.error(e, e);
137
138 throw new RemoteException(e.getMessage());
139 }
140 }
141
142 public static void testCounterIncrement_Rollback()
143 throws RemoteException {
144 try {
145 PortalServiceUtil.testCounterIncrement_Rollback();
146 }
147 catch (Exception e) {
148 _log.error(e, e);
149
150 throw new RemoteException(e.getMessage());
151 }
152 }
153
154 public static void testDeleteClassName() throws RemoteException {
155 try {
156 PortalServiceUtil.testDeleteClassName();
157 }
158 catch (Exception e) {
159 _log.error(e, e);
160
161 throw new RemoteException(e.getMessage());
162 }
163 }
164
165 public static int testGetBuildNumber() throws RemoteException {
166 try {
167 int returnValue = PortalServiceUtil.testGetBuildNumber();
168
169 return returnValue;
170 }
171 catch (Exception e) {
172 _log.error(e, e);
173
174 throw new RemoteException(e.getMessage());
175 }
176 }
177
178 public static void testGetUserId() throws RemoteException {
179 try {
180 PortalServiceUtil.testGetUserId();
181 }
182 catch (Exception e) {
183 _log.error(e, e);
184
185 throw new RemoteException(e.getMessage());
186 }
187 }
188
189 public static boolean testHasClassName() throws RemoteException {
190 try {
191 boolean returnValue = PortalServiceUtil.testHasClassName();
192
193 return returnValue;
194 }
195 catch (Exception e) {
196 _log.error(e, e);
197
198 throw new RemoteException(e.getMessage());
199 }
200 }
201
202 public static void testAutoSyncHibernateSessionStateOnTxCreation()
203 throws RemoteException {
204 try {
205 PortalServiceUtil.testAutoSyncHibernateSessionStateOnTxCreation();
206 }
207 catch (Exception e) {
208 _log.error(e, e);
209
210 throw new RemoteException(e.getMessage());
211 }
212 }
213
214 private static Log _log = LogFactoryUtil.getLog(PortalServiceSoap.class);
215 }