From b44bb302dfbf54e44ef5cffc51beeb792c3deaa0 Mon Sep 17 00:00:00 2001 From: slaws Date: Wed, 3 Jun 2009 13:50:00 +0000 Subject: remove cruft git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@781374 13f79535-47bb-0310-9956-ffa450edef68 --- sandbox/slaws/logging-copy/pom.xml | 57 ----------------- .../src/main/java/patha/Messages.properties | 21 ------- .../src/main/java/patha/SomeTuscanyClassA.java | 35 ----------- .../src/main/java/pathb/SomeTuscanyClassB.java | 48 -------------- .../main/java/pathb/tuscany-messages_en.properties | 24 ------- .../src/main/resources/tuscany-logging.properties | 73 ---------------------- .../main/resources/tuscany-messages_en.properties | 24 ------- .../src/test/java/test/LoggingTestCase.java | 71 --------------------- 8 files changed, 353 deletions(-) delete mode 100644 sandbox/slaws/logging-copy/pom.xml delete mode 100644 sandbox/slaws/logging-copy/src/main/java/patha/Messages.properties delete mode 100644 sandbox/slaws/logging-copy/src/main/java/patha/SomeTuscanyClassA.java delete mode 100644 sandbox/slaws/logging-copy/src/main/java/pathb/SomeTuscanyClassB.java delete mode 100644 sandbox/slaws/logging-copy/src/main/java/pathb/tuscany-messages_en.properties delete mode 100644 sandbox/slaws/logging-copy/src/main/resources/tuscany-logging.properties delete mode 100644 sandbox/slaws/logging-copy/src/main/resources/tuscany-messages_en.properties delete mode 100644 sandbox/slaws/logging-copy/src/test/java/test/LoggingTestCase.java (limited to 'sandbox/slaws') diff --git a/sandbox/slaws/logging-copy/pom.xml b/sandbox/slaws/logging-copy/pom.xml deleted file mode 100644 index 5bf4a3e0e7..0000000000 --- a/sandbox/slaws/logging-copy/pom.xml +++ /dev/null @@ -1,57 +0,0 @@ - - - - 4.0.0 - - org.apache.tuscany.sca - tuscany-sca - 1.0-incubating-SNAPSHOT - ../../pom.xml - - sample-calculator - Apache Tuscany Calculator Sample - - - - apache.incubator - http://people.apache.org/repo/m2-incubating-repository - - - - - - org.apache.cxf - cxf-common-utilities - 2.0.1-incubator - - - - junit - junit - 4.2 - test - - - - - - ${artifactId} - - diff --git a/sandbox/slaws/logging-copy/src/main/java/patha/Messages.properties b/sandbox/slaws/logging-copy/src/main/java/patha/Messages.properties deleted file mode 100644 index 857c767484..0000000000 --- a/sandbox/slaws/logging-copy/src/main/java/patha/Messages.properties +++ /dev/null @@ -1,21 +0,0 @@ -# -# -# 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. -# -# -TEST_MESSAGE = This is a test message with numbers {0}, {1}, {2} diff --git a/sandbox/slaws/logging-copy/src/main/java/patha/SomeTuscanyClassA.java b/sandbox/slaws/logging-copy/src/main/java/patha/SomeTuscanyClassA.java deleted file mode 100644 index ad29675074..0000000000 --- a/sandbox/slaws/logging-copy/src/main/java/patha/SomeTuscanyClassA.java +++ /dev/null @@ -1,35 +0,0 @@ -package patha; - -import java.util.logging.Level; -import java.util.logging.Logger; - -import org.apache.cxf.common.logging.LogUtils; - -public class SomeTuscanyClassA { - - private static final Logger Log = LogUtils.getL7dLogger(SomeTuscanyClassA.class); - - public SomeTuscanyClassA() { - - - Integer params[] = {8, 9, 4}; - - - LogUtils.log(Log, - Level.INFO, - "TEST_MESSAGE", - null, - (Object[])params); - - Exception ex = new IllegalStateException("TEST_MESSAGE"); - - LogUtils.log(Log, - Level.INFO, - "TEST_MESSAGE", - ex, - (Object[])params); - - - } - -} diff --git a/sandbox/slaws/logging-copy/src/main/java/pathb/SomeTuscanyClassB.java b/sandbox/slaws/logging-copy/src/main/java/pathb/SomeTuscanyClassB.java deleted file mode 100644 index 5ad190d9c4..0000000000 --- a/sandbox/slaws/logging-copy/src/main/java/pathb/SomeTuscanyClassB.java +++ /dev/null @@ -1,48 +0,0 @@ -package pathb; - -import java.io.InputStream; -import java.util.logging.Level; -import java.util.logging.LogManager; -import java.util.logging.Logger; - -import org.apache.cxf.common.logging.LogUtils; - -import patha.SomeTuscanyClassA; - -public class SomeTuscanyClassB { - private static final Logger Log = Logger.getLogger(SomeTuscanyClassA.class.getName()); - - - public SomeTuscanyClassB() { - - Logger Log1 = Logger.getLogger("pathb", "tuscany-messages"); - Logger Log = Logger.getLogger(SomeTuscanyClassB.class.getName()); - String rbName = Log.getResourceBundleName(); - - Log.log(Level.INFO, - "MESSAGE1"); - - - String componentName = "Some component"; - - Log.log(Level.INFO, - "MESSAGE2", // message id - componentName); // parameter - - Integer params[] = {8, 9, 4}; - - Log.log(Level.INFO, - "MESSAGE3", // message id - params); // parameter - - - Exception ex = new IllegalStateException("TEST_MESSAGE"); - - Log.log(Level.INFO, - "MESSAGE4", // message id - ex); // parameter - - - } - -} diff --git a/sandbox/slaws/logging-copy/src/main/java/pathb/tuscany-messages_en.properties b/sandbox/slaws/logging-copy/src/main/java/pathb/tuscany-messages_en.properties deleted file mode 100644 index 523263da40..0000000000 --- a/sandbox/slaws/logging-copy/src/main/java/pathb/tuscany-messages_en.properties +++ /dev/null @@ -1,24 +0,0 @@ -# -# -# 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. -# -# -MESSAGE1 = This is a test message with no params -MESSAGE2 = This is a test message with a string param {0} -MESSAGE3 = This is a test message with numbers {0}, {1}, {2} -MESSAGE4 = This is a test message with exception diff --git a/sandbox/slaws/logging-copy/src/main/resources/tuscany-logging.properties b/sandbox/slaws/logging-copy/src/main/resources/tuscany-logging.properties deleted file mode 100644 index 3822dfa014..0000000000 --- a/sandbox/slaws/logging-copy/src/main/resources/tuscany-logging.properties +++ /dev/null @@ -1,73 +0,0 @@ -# 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. - -############################################################ -# Default Logging Configuration File -# -# You can use a different file by specifying a filename -# with the java.util.logging.config.file system property. -# For example java -Djava.util.logging.config.file=myfile -############################################################ - -############################################################ -# Global properties -############################################################ - -# "handlers" specifies a comma separated list of log Handler -# classes. These handlers will be installed during VM startup. -# Note that these classes must be on the system classpath. -# By default we only configure a ConsoleHandler, which will only -# show messages at the WARNING and above levels. -handlers= java.util.logging.ConsoleHandler, java.util.logging.FileHandler - -# Default global logging level. -# This specifies which kinds of events are logged across -# all loggers. For any given facility this global level -# can be overriden by a facility specific level -# Note that the ConsoleHandler also has a separate level -# setting to limit messages printed to the console. -.level= WARNING - -############################################################ -# Handler specific properties. -# Describes specific configuration info for Handlers. -############################################################ - -# default file output is in user's home directory. -java.util.logging.FileHandler.pattern = %h/java%u.log -java.util.logging.FileHandler.limit = 50000 -java.util.logging.FileHandler.count = 1 -java.util.logging.FileHandler.formatter = java.util.logging.XMLFormatter - -# Limit the message that are printed on the console to WARNING and above. -java.util.logging.ConsoleHandler.level = INFO -java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter -#java.util.logging.ConsoleHandler.formatter = demos.ws_rm.common.ConciseFormatter - - -############################################################ -# Logger specific properties. -# Provides extra control for each logger. -############################################################ - -# For example, set the com.xyz.foo logger to only log SEVERE -# messages: -#com.xyz.foo.level = SEVERE - -patha.SomeTuscanyClassA.level=INFO -pathb.SomeTuscanyClassB.level=INFO - diff --git a/sandbox/slaws/logging-copy/src/main/resources/tuscany-messages_en.properties b/sandbox/slaws/logging-copy/src/main/resources/tuscany-messages_en.properties deleted file mode 100644 index 523263da40..0000000000 --- a/sandbox/slaws/logging-copy/src/main/resources/tuscany-messages_en.properties +++ /dev/null @@ -1,24 +0,0 @@ -# -# -# 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. -# -# -MESSAGE1 = This is a test message with no params -MESSAGE2 = This is a test message with a string param {0} -MESSAGE3 = This is a test message with numbers {0}, {1}, {2} -MESSAGE4 = This is a test message with exception diff --git a/sandbox/slaws/logging-copy/src/test/java/test/LoggingTestCase.java b/sandbox/slaws/logging-copy/src/test/java/test/LoggingTestCase.java deleted file mode 100644 index 224ea32615..0000000000 --- a/sandbox/slaws/logging-copy/src/test/java/test/LoggingTestCase.java +++ /dev/null @@ -1,71 +0,0 @@ -/* - * 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 test; - -import java.io.InputStream; -import java.util.logging.LogManager; - -import org.junit.After; -import org.junit.Before; -import org.junit.Test; - -import patha.SomeTuscanyClassA; -import pathb.SomeTuscanyClassB; - - - -/** - * This shows how to test the Calculator service component. - */ -public class LoggingTestCase { - - - - @Before - public void setUp() throws Exception { - } - - @After - public void tearDown() throws Exception { - - } - - @Test - public void testUtilLogger() throws Exception { - - try { - InputStream logConfigStream = Thread.currentThread().getContextClassLoader().getResourceAsStream("tuscany-logging.properties"); - LogManager.getLogManager().readConfiguration(logConfigStream); - } catch(Exception ex) { - System.out.println("Can't find logging.properties on the classpath"); - } - - SomeTuscanyClassB stcB = new SomeTuscanyClassB(); - - } - - //@Test - public void testSpecilizedLogger() throws Exception { - - - - SomeTuscanyClassA stcA = new SomeTuscanyClassA(); - - } -} -- cgit v1.2.3