summaryrefslogtreecommitdiffstats
path: root/tags/java/sca/1.5.1/vtest/java-api/annotations/property/src/main/java/org/apache/tuscany/sca/vtest/javaapi/annotations/property/impl/CServiceImpl5.java
blob: 9a23e2de8d713fc79283954517de7477a3172cd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 * 
 *   http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.    
 */

package org.apache.tuscany.sca.vtest.javaapi.annotations.property.impl;

import org.apache.tuscany.sca.vtest.javaapi.annotations.property.BService;
import org.apache.tuscany.sca.vtest.javaapi.annotations.property.CService;
import org.osoa.sca.annotations.Constructor;
import org.osoa.sca.annotations.Property;
import org.osoa.sca.annotations.Reference;
import org.osoa.sca.annotations.Service;

@Service(CService.class)
public class CServiceImpl5 implements CService {

	public BService b1;

	public String p2;
	
	public int p3;

	public String p4;
	
	public String constructor; 
		
	public CServiceImpl5() {
		constructor = "NoArgument";
	}
	
	public CServiceImpl5(@Reference(name = "bOne") BService b1, @Property(name = "pTwo") String p2, @Property(name = "pThree") int p3, @Property(name = "pFour") String p4, int extra) {
		this.b1 = b1;
		this.p2 = p2;
		this.p3 = p3;
		this.p4 = p4;
		constructor = "ExtraArguments";
	}

	@Constructor({"bOne", "pFour", "pThree", "pTwo"})
	public CServiceImpl5(BService bOne, String pTwo, int pThree, String pFour) {
		this.b1 = bOne;
		this.p2 = pTwo;
		this.p3 = pThree;
		this.p4 = pFour;
		constructor = "SwitchedValues";
	}

    public String getName() {
        return "BService";
    }

	public String getB1Name() {
		if (b1 == null)
			return null;
		return b1.getName();
	}

	public String getP2() {
		return p2;
	}

	public int getP3() {
		return p3;
	}

	public String getConstructor() {
		return constructor;
	}

	public String getP4() {
		return p4;
	}
}