001/*
002 * Copyright 2012-2013 the original author or authors.
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *      https://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.springframework.batch.core.configuration.annotation;
017
018import org.springframework.batch.core.job.builder.JobBuilder;
019import org.springframework.batch.core.repository.JobRepository;
020
021/**
022 * Convenient factory for a {@link JobBuilder} which sets the {@link JobRepository} automatically.
023 * 
024 * @author Dave Syer
025 * 
026 */
027public class JobBuilderFactory {
028
029        private JobRepository jobRepository;
030
031        public JobBuilderFactory(JobRepository jobRepository) {
032                this.jobRepository = jobRepository;
033        }
034
035        /**
036         * Creates a job builder and initializes its job repository. Note that if the builder is used to create a @Bean
037         * definition then the name of the job and the bean name might be different.
038         * 
039         * @param name the name of the job
040         * @return a job builder
041         */
042        public JobBuilder get(String name) {
043                JobBuilder builder = new JobBuilder(name).repository(jobRepository);
044                return builder;
045        }
046
047}