Author: pidster
Date: Tue Nov 30 23:18:17 2010
New Revision: 1040822
URL: http://svn.apache.org/viewvc?rev=1040822&view=rev
Log:
Add AL2 header
Modified:
incubator/kitty/trunk/src/org/apache/kitty/Base.java
incubator/kitty/trunk/src/org/apache/kitty/CmdShell.groovy
incubator/kitty/trunk/src/org/apache/kitty/Main.groovy
incubator/kitty/trunk/src/org/apache/kitty/client/Client.groovy
incubator/kitty/trunk/src/org/apache/kitty/client/jmxmp/JMXMPClient.groovy
incubator/kitty/trunk/src/org/apache/kitty/client/rmi/RMIClient.groovy
incubator/kitty/trunk/src/org/apache/kitty/exceptions/DomainIsNoneException.groovy
incubator/kitty/trunk/src/org/apache/kitty/exceptions/DomainNotFoundException.groovy
incubator/kitty/trunk/src/org/apache/kitty/exceptions/InvokeException.groovy
incubator/kitty/trunk/src/org/apache/kitty/exceptions/MBeanAttributeNotFoundException.groovy
incubator/kitty/trunk/src/org/apache/kitty/exceptions/MBeanNotFoundException.groovy
incubator/kitty/trunk/src/org/apache/kitty/exceptions/OperationNotFoundException.groovy
incubator/kitty/trunk/src/org/apache/kitty/exceptions/SetAttributeException.groovy
incubator/kitty/trunk/src/org/apache/kitty/test/ClientTest0.groovy
incubator/kitty/trunk/src/org/apache/kitty/test/Test.java
incubator/kitty/trunk/src/org/apache/kitty/test/TestGroovyShell.groovy
incubator/kitty/trunk/src/org/apache/kitty/test/TestShell.java
incubator/kitty/trunk/src/org/apache/kitty/ui/Console.groovy
incubator/kitty/trunk/src/org/apache/kitty/ui/Dashboard.groovy
incubator/kitty/trunk/src/org/apache/kitty/utils/Constants.java
incubator/kitty/trunk/src/org/apache/kitty/utils/Help.groovy
Modified: incubator/kitty/trunk/src/org/apache/kitty/Base.java
URL:
http://svn.apache.org/viewvc/incubator/kitty/trunk/src/org/apache/kitty/Base.java?rev=1040822&r1=1040821&r2=1040822&view=diff
==============================================================================
--- incubator/kitty/trunk/src/org/apache/kitty/Base.java (original)
+++ incubator/kitty/trunk/src/org/apache/kitty/Base.java Tue Nov 30 23:18:17
2010
@@ -1,5 +1,26 @@
+/*
+ * 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.kitty;
+/**
+ *
+ */
public interface Base {
}
Modified: incubator/kitty/trunk/src/org/apache/kitty/CmdShell.groovy
URL:
http://svn.apache.org/viewvc/incubator/kitty/trunk/src/org/apache/kitty/CmdShell.groovy?rev=1040822&r1=1040821&r2=1040822&view=diff
==============================================================================
--- incubator/kitty/trunk/src/org/apache/kitty/CmdShell.groovy (original)
+++ incubator/kitty/trunk/src/org/apache/kitty/CmdShell.groovy Tue Nov 30
23:18:17 2010
@@ -1,6 +1,21 @@
-/**
- *
- */
+/*
+* 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.kitty
import java.io.BufferedReader;
@@ -17,7 +32,6 @@ import org.apache.kitty.utils.Constants;
* This is a command shell class that is used for a command line user
interface for the management console
* </p>
* </pre>
- * @author James R. Bray, Jr.
*
*/
class CmdShell {
Modified: incubator/kitty/trunk/src/org/apache/kitty/Main.groovy
URL:
http://svn.apache.org/viewvc/incubator/kitty/trunk/src/org/apache/kitty/Main.groovy?rev=1040822&r1=1040821&r2=1040822&view=diff
==============================================================================
--- incubator/kitty/trunk/src/org/apache/kitty/Main.groovy (original)
+++ incubator/kitty/trunk/src/org/apache/kitty/Main.groovy Tue Nov 30 23:18:17
2010
@@ -1,3 +1,21 @@
+/*
+* 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.kitty
/**
@@ -8,7 +26,6 @@ package org.apache.kitty
* </p>
* </pre>
*
-* @author James R. Bray, Jr.
*
*/
class Main {
Modified: incubator/kitty/trunk/src/org/apache/kitty/client/Client.groovy
URL:
http://svn.apache.org/viewvc/incubator/kitty/trunk/src/org/apache/kitty/client/Client.groovy?rev=1040822&r1=1040821&r2=1040822&view=diff
==============================================================================
--- incubator/kitty/trunk/src/org/apache/kitty/client/Client.groovy (original)
+++ incubator/kitty/trunk/src/org/apache/kitty/client/Client.groovy Tue Nov 30
23:18:17 2010
@@ -1,9 +1,27 @@
+/*
+* 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.kitty.client
+import java.io.IOException
import javax.management.remote.JMXConnectorFactory;
import javax.management.remote.JMXServiceURL;
import javax.management.ObjectName;
-import javax.management.Attribute;
import org.apache.kitty.exceptions.*;
Modified:
incubator/kitty/trunk/src/org/apache/kitty/client/jmxmp/JMXMPClient.groovy
URL:
http://svn.apache.org/viewvc/incubator/kitty/trunk/src/org/apache/kitty/client/jmxmp/JMXMPClient.groovy?rev=1040822&r1=1040821&r2=1040822&view=diff
==============================================================================
--- incubator/kitty/trunk/src/org/apache/kitty/client/jmxmp/JMXMPClient.groovy
(original)
+++ incubator/kitty/trunk/src/org/apache/kitty/client/jmxmp/JMXMPClient.groovy
Tue Nov 30 23:18:17 2010
@@ -1,8 +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.
+*/
+
+
package org.apache.kitty.client.jmxmp
+import javax.management.remote.JMXConnectorFactory
import org.apache.kitty.client.Client;
/**
Modified: incubator/kitty/trunk/src/org/apache/kitty/client/rmi/RMIClient.groovy
URL:
http://svn.apache.org/viewvc/incubator/kitty/trunk/src/org/apache/kitty/client/rmi/RMIClient.groovy?rev=1040822&r1=1040821&r2=1040822&view=diff
==============================================================================
--- incubator/kitty/trunk/src/org/apache/kitty/client/rmi/RMIClient.groovy
(original)
+++ incubator/kitty/trunk/src/org/apache/kitty/client/rmi/RMIClient.groovy Tue
Nov 30 23:18:17 2010
@@ -1,3 +1,21 @@
+/*
+* 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.kitty.client.rmi
import org.apache.kitty.client.Client;
Modified:
incubator/kitty/trunk/src/org/apache/kitty/exceptions/DomainIsNoneException.groovy
URL:
http://svn.apache.org/viewvc/incubator/kitty/trunk/src/org/apache/kitty/exceptions/DomainIsNoneException.groovy?rev=1040822&r1=1040821&r2=1040822&view=diff
==============================================================================
---
incubator/kitty/trunk/src/org/apache/kitty/exceptions/DomainIsNoneException.groovy
(original)
+++
incubator/kitty/trunk/src/org/apache/kitty/exceptions/DomainIsNoneException.groovy
Tue Nov 30 23:18:17 2010
@@ -1,6 +1,21 @@
-/**
- *
- */
+/*
+* 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.kitty.exceptions
/**
Modified:
incubator/kitty/trunk/src/org/apache/kitty/exceptions/DomainNotFoundException.groovy
URL:
http://svn.apache.org/viewvc/incubator/kitty/trunk/src/org/apache/kitty/exceptions/DomainNotFoundException.groovy?rev=1040822&r1=1040821&r2=1040822&view=diff
==============================================================================
---
incubator/kitty/trunk/src/org/apache/kitty/exceptions/DomainNotFoundException.groovy
(original)
+++
incubator/kitty/trunk/src/org/apache/kitty/exceptions/DomainNotFoundException.groovy
Tue Nov 30 23:18:17 2010
@@ -1,3 +1,21 @@
+/*
+* 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.kitty.exceptions
class DomainNotFoundException extends Exception {
Modified:
incubator/kitty/trunk/src/org/apache/kitty/exceptions/InvokeException.groovy
URL:
http://svn.apache.org/viewvc/incubator/kitty/trunk/src/org/apache/kitty/exceptions/InvokeException.groovy?rev=1040822&r1=1040821&r2=1040822&view=diff
==============================================================================
---
incubator/kitty/trunk/src/org/apache/kitty/exceptions/InvokeException.groovy
(original)
+++
incubator/kitty/trunk/src/org/apache/kitty/exceptions/InvokeException.groovy
Tue Nov 30 23:18:17 2010
@@ -1,8 +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.
+*/
+
+
package org.apache.kitty.exceptions
+
/**
* @author james
*
Modified:
incubator/kitty/trunk/src/org/apache/kitty/exceptions/MBeanAttributeNotFoundException.groovy
URL:
http://svn.apache.org/viewvc/incubator/kitty/trunk/src/org/apache/kitty/exceptions/MBeanAttributeNotFoundException.groovy?rev=1040822&r1=1040821&r2=1040822&view=diff
==============================================================================
---
incubator/kitty/trunk/src/org/apache/kitty/exceptions/MBeanAttributeNotFoundException.groovy
(original)
+++
incubator/kitty/trunk/src/org/apache/kitty/exceptions/MBeanAttributeNotFoundException.groovy
Tue Nov 30 23:18:17 2010
@@ -1,6 +1,21 @@
-/**
- *
+/*
+ * 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.kitty.exceptions
/**
Modified:
incubator/kitty/trunk/src/org/apache/kitty/exceptions/MBeanNotFoundException.groovy
URL:
http://svn.apache.org/viewvc/incubator/kitty/trunk/src/org/apache/kitty/exceptions/MBeanNotFoundException.groovy?rev=1040822&r1=1040821&r2=1040822&view=diff
==============================================================================
---
incubator/kitty/trunk/src/org/apache/kitty/exceptions/MBeanNotFoundException.groovy
(original)
+++
incubator/kitty/trunk/src/org/apache/kitty/exceptions/MBeanNotFoundException.groovy
Tue Nov 30 23:18:17 2010
@@ -1,6 +1,21 @@
-/**
- *
- */
+/*
+* 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.kitty.exceptions
/**
Modified:
incubator/kitty/trunk/src/org/apache/kitty/exceptions/OperationNotFoundException.groovy
URL:
http://svn.apache.org/viewvc/incubator/kitty/trunk/src/org/apache/kitty/exceptions/OperationNotFoundException.groovy?rev=1040822&r1=1040821&r2=1040822&view=diff
==============================================================================
---
incubator/kitty/trunk/src/org/apache/kitty/exceptions/OperationNotFoundException.groovy
(original)
+++
incubator/kitty/trunk/src/org/apache/kitty/exceptions/OperationNotFoundException.groovy
Tue Nov 30 23:18:17 2010
@@ -1,3 +1,21 @@
+/*
+* 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.kitty.exceptions
class OperationNotFoundException extends Exception {
Modified:
incubator/kitty/trunk/src/org/apache/kitty/exceptions/SetAttributeException.groovy
URL:
http://svn.apache.org/viewvc/incubator/kitty/trunk/src/org/apache/kitty/exceptions/SetAttributeException.groovy?rev=1040822&r1=1040821&r2=1040822&view=diff
==============================================================================
---
incubator/kitty/trunk/src/org/apache/kitty/exceptions/SetAttributeException.groovy
(original)
+++
incubator/kitty/trunk/src/org/apache/kitty/exceptions/SetAttributeException.groovy
Tue Nov 30 23:18:17 2010
@@ -1,6 +1,21 @@
-/**
+/*
+ * 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.kitty.exceptions
/**
Modified: incubator/kitty/trunk/src/org/apache/kitty/test/ClientTest0.groovy
URL:
http://svn.apache.org/viewvc/incubator/kitty/trunk/src/org/apache/kitty/test/ClientTest0.groovy?rev=1040822&r1=1040821&r2=1040822&view=diff
==============================================================================
--- incubator/kitty/trunk/src/org/apache/kitty/test/ClientTest0.groovy
(original)
+++ incubator/kitty/trunk/src/org/apache/kitty/test/ClientTest0.groovy Tue Nov
30 23:18:17 2010
@@ -1,6 +1,21 @@
-/**
+/*
+ * 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.kitty.test;
import groovy.util.GroovyTestCase;
Modified: incubator/kitty/trunk/src/org/apache/kitty/test/Test.java
URL:
http://svn.apache.org/viewvc/incubator/kitty/trunk/src/org/apache/kitty/test/Test.java?rev=1040822&r1=1040821&r2=1040822&view=diff
==============================================================================
--- incubator/kitty/trunk/src/org/apache/kitty/test/Test.java (original)
+++ incubator/kitty/trunk/src/org/apache/kitty/test/Test.java Tue Nov 30
23:18:17 2010
@@ -1,3 +1,21 @@
+/*
+ * 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.kitty.test;
import javax.management.remote.JMXConnector;
Modified: incubator/kitty/trunk/src/org/apache/kitty/test/TestGroovyShell.groovy
URL:
http://svn.apache.org/viewvc/incubator/kitty/trunk/src/org/apache/kitty/test/TestGroovyShell.groovy?rev=1040822&r1=1040821&r2=1040822&view=diff
==============================================================================
--- incubator/kitty/trunk/src/org/apache/kitty/test/TestGroovyShell.groovy
(original)
+++ incubator/kitty/trunk/src/org/apache/kitty/test/TestGroovyShell.groovy Tue
Nov 30 23:18:17 2010
@@ -1,10 +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.
+*/
+
+
package org.apache.kitty.test
import java.io.BufferedReader;
-import java.io.IOException;
import java.io.InputStreamReader;
import org.apache.kitty.utils.Help;
Modified: incubator/kitty/trunk/src/org/apache/kitty/test/TestShell.java
URL:
http://svn.apache.org/viewvc/incubator/kitty/trunk/src/org/apache/kitty/test/TestShell.java?rev=1040822&r1=1040821&r2=1040822&view=diff
==============================================================================
--- incubator/kitty/trunk/src/org/apache/kitty/test/TestShell.java (original)
+++ incubator/kitty/trunk/src/org/apache/kitty/test/TestShell.java Tue Nov 30
23:18:17 2010
@@ -1,6 +1,21 @@
-/**
+/*
+ * 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.kitty.test;
import java.io.BufferedReader;
Modified: incubator/kitty/trunk/src/org/apache/kitty/ui/Console.groovy
URL:
http://svn.apache.org/viewvc/incubator/kitty/trunk/src/org/apache/kitty/ui/Console.groovy?rev=1040822&r1=1040821&r2=1040822&view=diff
==============================================================================
--- incubator/kitty/trunk/src/org/apache/kitty/ui/Console.groovy (original)
+++ incubator/kitty/trunk/src/org/apache/kitty/ui/Console.groovy Tue Nov 30
23:18:17 2010
@@ -1,10 +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.
*/
+
+
package org.apache.kitty.ui
/**
- * @author james
*
*/
class Console {
Modified: incubator/kitty/trunk/src/org/apache/kitty/ui/Dashboard.groovy
URL:
http://svn.apache.org/viewvc/incubator/kitty/trunk/src/org/apache/kitty/ui/Dashboard.groovy?rev=1040822&r1=1040821&r2=1040822&view=diff
==============================================================================
--- incubator/kitty/trunk/src/org/apache/kitty/ui/Dashboard.groovy (original)
+++ incubator/kitty/trunk/src/org/apache/kitty/ui/Dashboard.groovy Tue Nov 30
23:18:17 2010
@@ -1,6 +1,21 @@
-/**
- *
- */
+/*
+* 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.kitty.ui
/**
@@ -13,7 +28,6 @@ package org.apache.kitty.ui
* </p>
* </pre>
*
- * @author James R. Bray, Jr.
*
*/
class Dashboard {
Modified: incubator/kitty/trunk/src/org/apache/kitty/utils/Constants.java
URL:
http://svn.apache.org/viewvc/incubator/kitty/trunk/src/org/apache/kitty/utils/Constants.java?rev=1040822&r1=1040821&r2=1040822&view=diff
==============================================================================
--- incubator/kitty/trunk/src/org/apache/kitty/utils/Constants.java (original)
+++ incubator/kitty/trunk/src/org/apache/kitty/utils/Constants.java Tue Nov 30
23:18:17 2010
@@ -1,3 +1,21 @@
+/*
+ * 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.kitty.utils;
/**
@@ -8,7 +26,6 @@ package org.apache.kitty.utils;
* </p>
* </pre>
*
- * @author James R. Bray, Jr.
*
*/
public class Constants {
Modified: incubator/kitty/trunk/src/org/apache/kitty/utils/Help.groovy
URL:
http://svn.apache.org/viewvc/incubator/kitty/trunk/src/org/apache/kitty/utils/Help.groovy?rev=1040822&r1=1040821&r2=1040822&view=diff
==============================================================================
--- incubator/kitty/trunk/src/org/apache/kitty/utils/Help.groovy (original)
+++ incubator/kitty/trunk/src/org/apache/kitty/utils/Help.groovy Tue Nov 30
23:18:17 2010
@@ -1,11 +1,25 @@
-/**
+/*
+ * 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.kitty.utils
/**
- * @author James R. Bray, Jr.
*
*/
class Help {