Return-Path: X-Original-To: apmail-brooklyn-commits-archive@minotaur.apache.org Delivered-To: apmail-brooklyn-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D110A18384 for ; Mon, 1 Feb 2016 17:49:40 +0000 (UTC) Received: (qmail 61113 invoked by uid 500); 1 Feb 2016 17:49:06 -0000 Delivered-To: apmail-brooklyn-commits-archive@brooklyn.apache.org Received: (qmail 61023 invoked by uid 500); 1 Feb 2016 17:49:06 -0000 Mailing-List: contact commits-help@brooklyn.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@brooklyn.apache.org Delivered-To: mailing list commits@brooklyn.apache.org Received: (qmail 60197 invoked by uid 99); 1 Feb 2016 17:49:06 -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, 01 Feb 2016 17:49:06 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 17A55DFE61; Mon, 1 Feb 2016 17:49:06 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: heneveld@apache.org To: commits@brooklyn.apache.org Date: Mon, 01 Feb 2016 17:49:30 -0000 Message-Id: <80c35af7f28c4b0dbea437e43c073d98@git.apache.org> In-Reply-To: <8e481c27d77046f4a858bf765d38ce15@git.apache.org> References: <8e481c27d77046f4a858bf765d38ce15@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [26/50] brooklyn-server git commit: Oops, missed Identifiable interface! Oops, missed Identifiable interface! Project: http://git-wip-us.apache.org/repos/asf/brooklyn-server/repo Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-server/commit/331cc470 Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-server/tree/331cc470 Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-server/diff/331cc470 Branch: refs/heads/0.6.0 Commit: 331cc4702b5d26a07b533ebe6ee4f111f87ff7fc Parents: ab35717 Author: Aled Sage Authored: Tue Nov 12 22:15:17 2013 +0000 Committer: Aled Sage Committed: Tue Nov 12 22:15:17 2013 +0000 ---------------------------------------------------------------------- api/src/main/java/brooklyn/entity/trait/Identifiable.java | 6 ++++++ 1 file changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/331cc470/api/src/main/java/brooklyn/entity/trait/Identifiable.java ---------------------------------------------------------------------- diff --git a/api/src/main/java/brooklyn/entity/trait/Identifiable.java b/api/src/main/java/brooklyn/entity/trait/Identifiable.java new file mode 100644 index 0000000..5d3b859 --- /dev/null +++ b/api/src/main/java/brooklyn/entity/trait/Identifiable.java @@ -0,0 +1,6 @@ +package brooklyn.entity.trait; + +public interface Identifiable { + + String getId(); +}