blob: be430b8cfa3b1fe6086e4cb0bede4cc9cb2c57c1 [file] [log] [blame]
Aharoni, Pavel (pa0916)ca3cb012018-10-22 15:29:57 +03001/*-
2 * ============LICENSE_START=======================================================
3 * OSAM
4 * ================================================================================
5 * Copyright (C) 2018 AT&T
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
19 */
20
21
22
23package org.onap.osam.job.command;
24
25import org.onap.osam.exceptions.GenericUncheckedException;
26import org.onap.osam.job.Job;
27import org.onap.osam.job.JobCommand;
28import org.springframework.context.ApplicationContext;
29import org.springframework.stereotype.Component;
30
31import javax.inject.Inject;
32import java.util.function.Function;
33
34@Component
35public class JobCommandFactory {
36
37 final Function<Class<? extends JobCommand>, JobCommand> jobFactory;
38
39 @Inject
40 public JobCommandFactory(ApplicationContext applicationContext) {
41 this.jobFactory = (jobType -> {
42 final Object commandBean = applicationContext.getBean(jobType);
43
44 if (!(commandBean instanceof JobCommand)) {
45 throw new GenericUncheckedException(commandBean.getClass() + " is not a JobCommand");
46 }
47
48 return (JobCommand) commandBean;
49 });
50 }
51
52 public JobCommandFactory(Function<Class<? extends JobCommand>, JobCommand> jobFactory) {
53 this.jobFactory = jobFactory;
54 }
55
56 public JobCommand toCommand(Job job) {
57
58 final JobCommand command = jobFactory.apply(job.getType().getCommandClass());
59 command.init(job.getUuid(), job.getData());
60
61 return command;
62 }
63
64
65}