1
|
|
#region Copyright
|
2
|
|
|
3
|
|
|
4
|
|
|
5
|
|
|
6
|
|
|
7
|
|
|
8
|
|
|
9
|
|
|
10
|
|
|
11
|
|
|
12
|
|
|
13
|
|
|
14
|
|
|
15
|
|
|
16
|
|
|
17
|
|
#endregion
|
18
|
|
|
19
|
|
using System;
|
20
|
|
using Seasar.Framework.Container.Util;
|
21
|
|
|
22
|
|
namespace Seasar.Framework.Container.Deployer
|
23
|
|
{
|
24
|
|
|
25
|
|
|
26
|
|
|
27
|
|
public sealed class ComponentDeployerFactory
|
28
|
|
{
|
29
|
0
|
private ComponentDeployerFactory()
|
30
|
|
{
|
31
|
|
}
|
32
|
|
|
33
|
434
|
public static IComponentDeployer Create(IComponentDef componentDef)
|
34
|
|
{
|
35
|
434
|
if(InstanceModeUtil.IsSingleton(componentDef.InstanceMode))
|
36
|
|
{
|
37
|
427
|
return new SingletonComponentDeployer(componentDef);
|
38
|
|
}
|
39
|
7
|
else if(InstanceModeUtil.IsPrototype(componentDef.InstanceMode))
|
40
|
|
{
|
41
|
4
|
return new PrototypeComponentDeployer(componentDef);
|
42
|
|
}
|
43
|
3
|
else if(InstanceModeUtil.IsRequest(componentDef.InstanceMode))
|
44
|
|
{
|
45
|
0
|
return new RequestComponentDeployer(componentDef);
|
46
|
|
}
|
47
|
3
|
else if(InstanceModeUtil.IsSession(componentDef.InstanceMode))
|
48
|
|
{
|
49
|
0
|
return new SessionComponentDeployer(componentDef);
|
50
|
|
}
|
51
|
|
else
|
52
|
|
{
|
53
|
3
|
return new OuterComponentDeployer(componentDef);
|
54
|
|
}
|
55
|
|
}
|
56
|
|
}
|
57
|
|
}
|
58
|
|
|