Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 0050F200D55 for ; Sat, 9 Dec 2017 18:24:02 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id F2DFC160C23; Sat, 9 Dec 2017 17:24:01 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 3C727160C0E for ; Sat, 9 Dec 2017 18:24:01 +0100 (CET) Received: (qmail 77541 invoked by uid 500); 9 Dec 2017 17:23:59 -0000 Mailing-List: contact commits-help@maven.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@maven.apache.org Delivered-To: mailing list commits@maven.apache.org Received: (qmail 77080 invoked by uid 99); 9 Dec 2017 17:23:59 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 09 Dec 2017 17:23:59 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 34BBC8586F; Sat, 9 Dec 2017 17:23:58 +0000 (UTC) Date: Sat, 09 Dec 2017 17:24:09 +0000 To: "commits@maven.apache.org" Subject: [maven-shared-incremental] 12/44: oups missed to add the file MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit From: hboutemy@apache.org In-Reply-To: <151284023747.12439.17340178724202228313@gitbox.apache.org> References: <151284023747.12439.17340178724202228313@gitbox.apache.org> X-Git-Host: gitbox.apache.org X-Git-Repo: maven-shared-incremental X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Rev: 72e19c44160d7d3a35722b54dc3413eff8dfdd4a X-Git-NotificationType: diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated Message-Id: <20171209172358.34BBC8586F@gitbox.apache.org> archived-at: Sat, 09 Dec 2017 17:24:02 -0000 This is an automated email from the ASF dual-hosted git repository. hboutemy pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-shared-incremental.git commit 72e19c44160d7d3a35722b54dc3413eff8dfdd4a Author: Olivier Lamy AuthorDate: Mon Nov 26 23:13:50 2012 +0000 oups missed to add the file git-svn-id: https://svn.apache.org/repos/asf/maven/shared/trunk@1413923 13f79535-47bb-0310-9956-ffa450edef68 --- .../incremental/IncrementalBuildHelperRequest.java | 75 ++++++++++++++++++++++ 1 file changed, 75 insertions(+) diff --git a/src/main/java/org/apache/maven/shared/incremental/IncrementalBuildHelperRequest.java b/src/main/java/org/apache/maven/shared/incremental/IncrementalBuildHelperRequest.java new file mode 100644 index 0000000..19111df --- /dev/null +++ b/src/main/java/org/apache/maven/shared/incremental/IncrementalBuildHelperRequest.java @@ -0,0 +1,75 @@ +package org.apache.maven.shared.incremental; +/* + * 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. + */ + +import java.io.File; +import java.util.HashSet; +import java.util.Set; + +/** + * @author Olivier Lamy + * @since 1.1 + */ +public class IncrementalBuildHelperRequest +{ + private Set inputFiles; + + private File outputDirectory; + + public IncrementalBuildHelperRequest() + { + // no op + } + + public Set getInputFiles() + { + if ( inputFiles == null ) + { + this.inputFiles = new HashSet(); + } + return inputFiles; + } + + public void setInputFiles( Set inputFiles ) + { + this.inputFiles = inputFiles; + } + + public IncrementalBuildHelperRequest inputFiles( Set inputFiles ) + { + this.inputFiles = inputFiles; + return this; + } + + public File getOutputDirectory() + { + return outputDirectory; + } + + public void setOutputDirectory( File outputDirectory ) + { + this.outputDirectory = outputDirectory; + } + + public IncrementalBuildHelperRequest outputDirectory( File outputDirectory ) + { + this.outputDirectory = outputDirectory; + return this; + } +} -- To stop receiving notification emails like this one, please contact "commits@maven.apache.org" .