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 43CB1200B96 for ; Thu, 6 Oct 2016 19:49:22 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 42A43160AF1; Thu, 6 Oct 2016 17:49:22 +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 36DB7160AC5 for ; Thu, 6 Oct 2016 19:49:21 +0200 (CEST) Received: (qmail 48315 invoked by uid 500); 6 Oct 2016 17:49:19 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 47075 invoked by uid 99); 6 Oct 2016 17:49:19 -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; Thu, 06 Oct 2016 17:49:19 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 28845E056F; Thu, 6 Oct 2016 17:49:19 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: cpike@apache.org To: commits@directory.apache.org Date: Thu, 06 Oct 2016 17:49:41 -0000 Message-Id: <1fdf1ba28f8e4822b52032920f23f311@git.apache.org> In-Reply-To: <0f8d33fb296a46aeb8e4ce632af5ed28@git.apache.org> References: <0f8d33fb296a46aeb8e4ce632af5ed28@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [24/43] directory-fortress-core git commit: made role constraint serializable archived-at: Thu, 06 Oct 2016 17:49:22 -0000 made role constraint serializable Project: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/repo Commit: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/commit/d161f417 Tree: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/tree/d161f417 Diff: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/diff/d161f417 Branch: refs/heads/master Commit: d161f41743f45d580368155dee3422eb249c9b5a Parents: 0403277 Author: clp207 Authored: Tue Feb 9 11:41:49 2016 -0500 Committer: clp207 Committed: Wed Mar 30 15:44:23 2016 -0400 ---------------------------------------------------------------------- .../apache/directory/fortress/core/model/RoleConstraint.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/d161f417/src/main/java/org/apache/directory/fortress/core/model/RoleConstraint.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/directory/fortress/core/model/RoleConstraint.java b/src/main/java/org/apache/directory/fortress/core/model/RoleConstraint.java index b893e4a..e343223 100644 --- a/src/main/java/org/apache/directory/fortress/core/model/RoleConstraint.java +++ b/src/main/java/org/apache/directory/fortress/core/model/RoleConstraint.java @@ -1,9 +1,13 @@ package org.apache.directory.fortress.core.model; +import java.io.Serializable; + import org.apache.directory.fortress.core.GlobalIds; -public class RoleConstraint { +public class RoleConstraint implements Serializable { + private static final long serialVersionUID = 1L; + public static final String RC_TYPE_NAME = "type"; private RoleConstraintType constraintType;