Update Tizen 2.0 SDK source code
[sdk/tools/sdk-build.git] / src / build_server / RemoteBuildJob.rb
1 =begin
2
3  RemoteBuildJob.rb
4
5 Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
6
7 Contact:
8 Taejun Ha <taejun.ha@samsung.com>
9 Jiil Hyoun <jiil.hyoun@samsung.com>
10 Donghyuk Yang <donghyuk.yang@samsung.com>
11 DongHee Yang <donghee.yang@samsung.com>
12
13 Licensed under the Apache License, Version 2.0 (the "License");
14 you may not use this file except in compliance with the License.
15 You may obtain a copy of the License at
16
17 http://www.apache.org/licenses/LICENSE-2.0
18
19 Unless required by applicable law or agreed to in writing, software
20 distributed under the License is distributed on an "AS IS" BASIS,
21 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
22 See the License for the specific language governing permissions and
23 limitations under the License.
24
25 Contributors:
26 - S-Core Co., Ltd
27 =end
28
29 $LOAD_PATH.unshift File.dirname(__FILE__)
30 $LOAD_PATH.unshift File.dirname(File.dirname(__FILE__))+"/common"
31 require "BuildJob.rb"
32 require "utils.rb"
33
34 class RemoteBuildJob < BuildJob
35         attr_accessor :id
36
37         # initialize
38         def initialize (id,server)
39                 super(id,nil,nil,server)
40                 @id = id
41                 @type = nil
42         end
43 end