Return-Path: X-Original-To: apmail-devicemap-commits-archive@www.apache.org Delivered-To: apmail-devicemap-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 1F6F11844F for ; Wed, 29 Jul 2015 00:25:58 +0000 (UTC) Received: (qmail 72321 invoked by uid 500); 29 Jul 2015 00:25:58 -0000 Delivered-To: apmail-devicemap-commits-archive@devicemap.apache.org Received: (qmail 72296 invoked by uid 500); 29 Jul 2015 00:25:58 -0000 Mailing-List: contact commits-help@devicemap.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@devicemap.apache.org Delivered-To: mailing list commits@devicemap.apache.org Received: (qmail 72287 invoked by uid 99); 29 Jul 2015 00:25:58 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Jul 2015 00:25:58 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id B392DAC00B8 for ; Wed, 29 Jul 2015 00:25:57 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1693173 - in /devicemap/trunk/clients/2.0/reference/src: DeviceMapClient.java Main.java Date: Wed, 29 Jul 2015 00:25:57 -0000 To: commits@devicemap.apache.org From: rezan@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150729002557.B392DAC00B8@hades.apache.org> Author: rezan Date: Wed Jul 29 00:25:57 2015 New Revision: 1693173 URL: http://svn.apache.org/r1693173 Log: client version Added: devicemap/trunk/clients/2.0/reference/src/DeviceMapClient.java Modified: devicemap/trunk/clients/2.0/reference/src/Main.java Added: devicemap/trunk/clients/2.0/reference/src/DeviceMapClient.java URL: http://svn.apache.org/viewvc/devicemap/trunk/clients/2.0/reference/src/DeviceMapClient.java?rev=1693173&view=auto ============================================================================== --- devicemap/trunk/clients/2.0/reference/src/DeviceMapClient.java (added) +++ devicemap/trunk/clients/2.0/reference/src/DeviceMapClient.java Wed Jul 29 00:25:57 2015 @@ -0,0 +1,24 @@ +/* + 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. + */ + +public class DeviceMapClient { + + public final static String VERSION = "2.0"; + +} Modified: devicemap/trunk/clients/2.0/reference/src/Main.java URL: http://svn.apache.org/viewvc/devicemap/trunk/clients/2.0/reference/src/Main.java?rev=1693173&r1=1693172&r2=1693173&view=diff ============================================================================== --- devicemap/trunk/clients/2.0/reference/src/Main.java (original) +++ devicemap/trunk/clients/2.0/reference/src/Main.java Wed Jul 29 00:25:57 2015 @@ -22,10 +22,8 @@ import java.util.List; public class Main { - public final static String VERSION = "2.0"; - public static void main(String args[]) { - System.out.println("DeviceMap Reference Client " + VERSION); + System.out.println("DeviceMap Reference Client " + DeviceMapClient.VERSION); List patterns = new ArrayList(); List attributes = new ArrayList();