01: /**
02: * Copyright (c) 2000-2008 Liferay, Inc. All rights reserved.
03: *
04: * Permission is hereby granted, free of charge, to any person obtaining a copy
05: * of this software and associated documentation files (the "Software"), to deal
06: * in the Software without restriction, including without limitation the rights
07: * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
08: * copies of the Software, and to permit persons to whom the Software is
09: * furnished to do so, subject to the following conditions:
10: *
11: * The above copyright notice and this permission notice shall be included in
12: * all copies or substantial portions of the Software.
13: *
14: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15: * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16: * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17: * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18: * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19: * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20: * SOFTWARE.
21: */package com.liferay.portal.service;
22:
23: import com.liferay.portal.kernel.bean.BeanLocatorUtil;
24:
25: /**
26: * <a href="LayoutSetServiceFactory.java.html"><b><i>View Source</i></b></a>
27: *
28: * <p>
29: * ServiceBuilder generated this class. Modifications in this class will be
30: * overwritten the next time is generated.
31: * </p>
32: *
33: * <p>
34: * This class is responsible for the lookup of the implementation for
35: * <code>com.liferay.portal.service.LayoutSetService</code>.
36: * Spring manages the lookup and lifecycle of the beans. This means you can
37: * modify the Spring configuration files to return a different implementation or
38: * to inject additional behavior.
39: * </p>
40: *
41: * <p>
42: * See the <code>spring.configs</code> property in portal.properties for
43: * additional information on how to customize the Spring XML files.
44: * </p>
45: *
46: * @author Brian Wing Shun Chan
47: *
48: * @see com.liferay.portal.service.LayoutSetService
49: * @see com.liferay.portal.service.LayoutSetServiceUtil
50: *
51: */
52: public class LayoutSetServiceFactory {
53: public static LayoutSetService getService() {
54: return _getFactory()._service;
55: }
56:
57: public static LayoutSetService getImpl() {
58: if (_impl == null) {
59: _impl = (LayoutSetService) BeanLocatorUtil.locate(_IMPL);
60: }
61:
62: return _impl;
63: }
64:
65: public static LayoutSetService getTxImpl() {
66: if (_txImpl == null) {
67: _txImpl = (LayoutSetService) BeanLocatorUtil
68: .locate(_TX_IMPL);
69: }
70:
71: return _txImpl;
72: }
73:
74: public void setService(LayoutSetService service) {
75: _service = service;
76: }
77:
78: private static LayoutSetServiceFactory _getFactory() {
79: if (_factory == null) {
80: _factory = (LayoutSetServiceFactory) BeanLocatorUtil
81: .locate(_FACTORY);
82: }
83:
84: return _factory;
85: }
86:
87: private static final String _FACTORY = LayoutSetServiceFactory.class
88: .getName();
89: private static final String _IMPL = LayoutSetService.class
90: .getName()
91: + ".impl";
92: private static final String _TX_IMPL = LayoutSetService.class
93: .getName()
94: + ".transaction";
95: private static LayoutSetServiceFactory _factory;
96: private static LayoutSetService _impl;
97: private static LayoutSetService _txImpl;
98: private LayoutSetService _service;
99: }
|