Return-Path: X-Original-To: apmail-directory-commits-archive@www.apache.org Delivered-To: apmail-directory-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 759D710BA9 for ; Fri, 9 Aug 2013 11:03:24 +0000 (UTC) Received: (qmail 68259 invoked by uid 500); 9 Aug 2013 11:03:23 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 68237 invoked by uid 500); 9 Aug 2013 11:03:22 -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 68230 invoked by uid 99); 9 Aug 2013 11:03:20 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Aug 2013 11:03:20 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Aug 2013 11:03:18 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 21CB82388900; Fri, 9 Aug 2013 11:02:57 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1512249 - in /directory/escimo/trunk/ldap/src/main/java/org/apache/directory/scim/ldap/schema: DerivedType.java DynamicType.java Date: Fri, 09 Aug 2013 11:02:57 -0000 To: commits@directory.apache.org From: kayyagari@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20130809110257.21CB82388900@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: kayyagari Date: Fri Aug 9 11:02:56 2013 New Revision: 1512249 URL: http://svn.apache.org/r1512249 Log: renamed to derived type Added: directory/escimo/trunk/ldap/src/main/java/org/apache/directory/scim/ldap/schema/DerivedType.java Removed: directory/escimo/trunk/ldap/src/main/java/org/apache/directory/scim/ldap/schema/DynamicType.java Added: directory/escimo/trunk/ldap/src/main/java/org/apache/directory/scim/ldap/schema/DerivedType.java URL: http://svn.apache.org/viewvc/directory/escimo/trunk/ldap/src/main/java/org/apache/directory/scim/ldap/schema/DerivedType.java?rev=1512249&view=auto ============================================================================== --- directory/escimo/trunk/ldap/src/main/java/org/apache/directory/scim/ldap/schema/DerivedType.java (added) +++ directory/escimo/trunk/ldap/src/main/java/org/apache/directory/scim/ldap/schema/DerivedType.java Fri Aug 9 11:02:56 2013 @@ -0,0 +1,52 @@ +/* + * 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. + * + */ +package org.apache.directory.scim.ldap.schema; + +import org.apache.directory.scim.schema.BaseType; + + +/** + * TODO DerivedType. + * + * @author Apache Directory Project + */ +public class DerivedType extends BaseType +{ + private SimpleTypeGroup atGroup; + + private String baseDn; + + private String filter; + + public DerivedType(String uri, String name, boolean show, String baseDn, String filter, SimpleTypeGroup atGroup ) + { + super(uri, name, show); + this.baseDn = baseDn; + this.filter = filter; + this.atGroup = atGroup; + } + + @Override + public boolean isDynamic() + { + return true; + } + +}