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.portlet.imagegallery.service;
22:
23: import com.liferay.portal.kernel.bean.BeanLocatorUtil;
24:
25: /**
26: * <a href="IGImageServiceFactory.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.portlet.imagegallery.service.IGImageService</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.portlet.imagegallery.service.IGImageService
49: * @see com.liferay.portlet.imagegallery.service.IGImageServiceUtil
50: *
51: */
52: public class IGImageServiceFactory {
53: public static IGImageService getService() {
54: return _getFactory()._service;
55: }
56:
57: public static IGImageService getImpl() {
58: if (_impl == null) {
59: _impl = (IGImageService) BeanLocatorUtil.locate(_IMPL);
60: }
61:
62: return _impl;
63: }
64:
65: public static IGImageService getTxImpl() {
66: if (_txImpl == null) {
67: _txImpl = (IGImageService) BeanLocatorUtil.locate(_TX_IMPL);
68: }
69:
70: return _txImpl;
71: }
72:
73: public void setService(IGImageService service) {
74: _service = service;
75: }
76:
77: private static IGImageServiceFactory _getFactory() {
78: if (_factory == null) {
79: _factory = (IGImageServiceFactory) BeanLocatorUtil
80: .locate(_FACTORY);
81: }
82:
83: return _factory;
84: }
85:
86: private static final String _FACTORY = IGImageServiceFactory.class
87: .getName();
88: private static final String _IMPL = IGImageService.class.getName()
89: + ".impl";
90: private static final String _TX_IMPL = IGImageService.class
91: .getName()
92: + ".transaction";
93: private static IGImageServiceFactory _factory;
94: private static IGImageService _impl;
95: private static IGImageService _txImpl;
96: private IGImageService _service;
97: }
|