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 67DF2200D4B for ; Mon, 27 Nov 2017 13:52:54 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 6633D160C13; Mon, 27 Nov 2017 12:52:54 +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 ADB75160C02 for ; Mon, 27 Nov 2017 13:52:53 +0100 (CET) Received: (qmail 26902 invoked by uid 500); 27 Nov 2017 12:52:52 -0000 Mailing-List: contact commits-help@flink.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flink.apache.org Delivered-To: mailing list commits@flink.apache.org Received: (qmail 26881 invoked by uid 99); 27 Nov 2017 12:52:52 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Nov 2017 12:52:52 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C3EBDDF9AE; Mon, 27 Nov 2017 12:52:52 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: chesnay@apache.org To: commits@flink.apache.org Message-Id: <5a5a74cfa001405893e2450dcbec248f@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: flink git commit: [hotfix][docs] Fix missing period package declaration Date: Mon, 27 Nov 2017 12:52:52 +0000 (UTC) archived-at: Mon, 27 Nov 2017 12:52:54 -0000 Repository: flink Updated Branches: refs/heads/release-1.4 bd1e03374 -> 728d2ffdd [hotfix][docs] Fix missing period package declaration This closes #5077. Project: http://git-wip-us.apache.org/repos/asf/flink/repo Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/728d2ffd Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/728d2ffd Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/728d2ffd Branch: refs/heads/release-1.4 Commit: 728d2ffdd5215223405dceb7469d47466706b043 Parents: bd1e033 Author: Matrix42 <934336389@qq.com> Authored: Mon Nov 27 17:34:01 2017 +0800 Committer: zentol Committed: Mon Nov 27 13:52:47 2017 +0100 ---------------------------------------------------------------------- docs/dev/packaging.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flink/blob/728d2ffd/docs/dev/packaging.md ---------------------------------------------------------------------- diff --git a/docs/dev/packaging.md b/docs/dev/packaging.md index e83d9ac..769a675 100644 --- a/docs/dev/packaging.md +++ b/docs/dev/packaging.md @@ -56,7 +56,7 @@ the program's data flow. To do that, the program must implement the strings passed to that method are the command line arguments. The program's plan can be created from the environment via the `ExecutionEnvironment#createProgramPlan()` method. When packaging the program's plan, the JAR manifest must point to the class implementing the -`org.apache.flinkapi.common.Program` interface, instead of the class with the main method. +`org.apache.flink.api.common.Program` interface, instead of the class with the main method. ### Summary @@ -68,10 +68,10 @@ attributes are found, the *program-class* attribute takes precedence over the *m attribute. Both the command line and the web interface support a parameter to pass the entry point class name manually for cases where the JAR manifest contains neither attribute. -2. If the entry point class implements the `org.apache.flinkapi.common.Program`, then the system +2. If the entry point class implements the `org.apache.flink.api.common.Program`, then the system calls the `getPlan(String...)` method to obtain the program plan to execute. -3. If the entry point class does not implement the `org.apache.flinkapi.common.Program` interface, +3. If the entry point class does not implement the `org.apache.flink.api.common.Program` interface, the system will invoke the main method of the class. {% top %}