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 6CE31200B65 for ; Wed, 17 Aug 2016 12:17:22 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 6B9F2160AB5; Wed, 17 Aug 2016 10:17: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 B9015160A86 for ; Wed, 17 Aug 2016 12:17:21 +0200 (CEST) Received: (qmail 67819 invoked by uid 500); 17 Aug 2016 10:17:21 -0000 Mailing-List: contact commits-help@felix.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@felix.apache.org Delivered-To: mailing list commits@felix.apache.org Received: (qmail 67810 invoked by uid 99); 17 Aug 2016 10:17:20 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 17 Aug 2016 10:17:20 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id 8BF4D1806AC for ; Wed, 17 Aug 2016 10:17:20 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -0.426 X-Spam-Level: X-Spam-Status: No, score=-0.426 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-1.426] autolearn=disabled Received: from mx2-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id HtWOio0rhSdO for ; Wed, 17 Aug 2016 10:17:19 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx2-lw-eu.apache.org (ASF Mail Server at mx2-lw-eu.apache.org) with ESMTP id 6CCC05FBB8 for ; Wed, 17 Aug 2016 10:17:19 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 700BCE00E6 for ; Wed, 17 Aug 2016 10:17:18 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 107B43A10B8 for ; Wed, 17 Aug 2016 10:17:17 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1756608 - /felix/trunk/converter/src/test/java/org/apache/felix/converter/impl/MyEmbeddedDTO.java Date: Wed, 17 Aug 2016 10:17:17 -0000 To: commits@felix.apache.org From: davidb@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20160817101718.107B43A10B8@svn01-us-west.apache.org> archived-at: Wed, 17 Aug 2016 10:17:22 -0000 Author: davidb Date: Wed Aug 17 10:17:17 2016 New Revision: 1756608 URL: http://svn.apache.org/viewvc?rev=1756608&view=rev Log: Felix converter service. Add missing test class belonging to previous commit. Added: felix/trunk/converter/src/test/java/org/apache/felix/converter/impl/MyEmbeddedDTO.java Added: felix/trunk/converter/src/test/java/org/apache/felix/converter/impl/MyEmbeddedDTO.java URL: http://svn.apache.org/viewvc/felix/trunk/converter/src/test/java/org/apache/felix/converter/impl/MyEmbeddedDTO.java?rev=1756608&view=auto ============================================================================== --- felix/trunk/converter/src/test/java/org/apache/felix/converter/impl/MyEmbeddedDTO.java (added) +++ felix/trunk/converter/src/test/java/org/apache/felix/converter/impl/MyEmbeddedDTO.java Wed Aug 17 10:17:17 2016 @@ -0,0 +1,29 @@ +/* + * 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.felix.converter.impl; + +import org.osgi.dto.DTO; + +public class MyEmbeddedDTO extends DTO { + public enum Alpha { A, B, C } + + public Alpha alpha; + + public String marco; + + public long polo; +}