1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
package org.mule.object; |
8 | |
|
9 | |
import java.util.Map; |
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
public class PrototypeObjectFactory extends AbstractObjectFactory |
15 | |
{ |
16 | |
|
17 | |
|
18 | |
public PrototypeObjectFactory() |
19 | |
{ |
20 | 0 | super(); |
21 | 0 | } |
22 | |
|
23 | |
public PrototypeObjectFactory(String objectClassName) |
24 | |
{ |
25 | 0 | super(objectClassName); |
26 | 0 | } |
27 | |
|
28 | |
public PrototypeObjectFactory(String objectClassName, Map properties) |
29 | |
{ |
30 | 0 | super(objectClassName, properties); |
31 | 0 | } |
32 | |
|
33 | |
public PrototypeObjectFactory(Class<?> objectClass) |
34 | |
{ |
35 | 0 | super(objectClass); |
36 | 0 | } |
37 | |
|
38 | |
public PrototypeObjectFactory(Class<?> objectClass, Map properties) |
39 | |
{ |
40 | 0 | super(objectClass, properties); |
41 | 0 | } |
42 | |
|
43 | |
} |