You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wink.apache.org by lr...@apache.org on 2012/04/22 04:09:43 UTC

svn commit: r1328772 - in /incubator/wink/trunk/wink-osgi/src/main/java/org/apache/wink/osgi: JaxRsFilter.java WinkRequestProcessor.java internal/DummyRuntimeDelegate.java internal/ThreadRootResourceDeploymentConfiguration.java

Author: lresende
Date: Sun Apr 22 02:09:43 2012
New Revision: 1328772

URL: http://svn.apache.org/viewvc?rev=1328772&view=rev
Log:
Fixing up AL headers to follow same pattern of other files and to avoid license check warnings/errors

Modified:
    incubator/wink/trunk/wink-osgi/src/main/java/org/apache/wink/osgi/JaxRsFilter.java
    incubator/wink/trunk/wink-osgi/src/main/java/org/apache/wink/osgi/WinkRequestProcessor.java
    incubator/wink/trunk/wink-osgi/src/main/java/org/apache/wink/osgi/internal/DummyRuntimeDelegate.java
    incubator/wink/trunk/wink-osgi/src/main/java/org/apache/wink/osgi/internal/ThreadRootResourceDeploymentConfiguration.java

Modified: incubator/wink/trunk/wink-osgi/src/main/java/org/apache/wink/osgi/JaxRsFilter.java
URL: http://svn.apache.org/viewvc/incubator/wink/trunk/wink-osgi/src/main/java/org/apache/wink/osgi/JaxRsFilter.java?rev=1328772&r1=1328771&r2=1328772&view=diff
==============================================================================
--- incubator/wink/trunk/wink-osgi/src/main/java/org/apache/wink/osgi/JaxRsFilter.java (original)
+++ incubator/wink/trunk/wink-osgi/src/main/java/org/apache/wink/osgi/JaxRsFilter.java Sun Apr 22 02:09:43 2012
@@ -1,19 +1,22 @@
-/*
- * 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.
- */
+/*******************************************************************************
+ * 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.wink.osgi;
 
 import java.io.IOException;
@@ -47,7 +50,6 @@ import org.slf4j.LoggerFactory;
 @Properties({
 	@Property(name ="pattern", value=".*")
 })
-@SuppressWarnings("serial")
 public class JaxRsFilter implements Filter {
 
 	private final static Logger log = LoggerFactory.getLogger(JaxRsFilter.class);

Modified: incubator/wink/trunk/wink-osgi/src/main/java/org/apache/wink/osgi/WinkRequestProcessor.java
URL: http://svn.apache.org/viewvc/incubator/wink/trunk/wink-osgi/src/main/java/org/apache/wink/osgi/WinkRequestProcessor.java?rev=1328772&r1=1328771&r2=1328772&view=diff
==============================================================================
--- incubator/wink/trunk/wink-osgi/src/main/java/org/apache/wink/osgi/WinkRequestProcessor.java (original)
+++ incubator/wink/trunk/wink-osgi/src/main/java/org/apache/wink/osgi/WinkRequestProcessor.java Sun Apr 22 02:09:43 2012
@@ -1,19 +1,22 @@
-/*
- * 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.
- */
+/*******************************************************************************
+ * 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.wink.osgi;
 
 import java.util.HashSet;

Modified: incubator/wink/trunk/wink-osgi/src/main/java/org/apache/wink/osgi/internal/DummyRuntimeDelegate.java
URL: http://svn.apache.org/viewvc/incubator/wink/trunk/wink-osgi/src/main/java/org/apache/wink/osgi/internal/DummyRuntimeDelegate.java?rev=1328772&r1=1328771&r2=1328772&view=diff
==============================================================================
--- incubator/wink/trunk/wink-osgi/src/main/java/org/apache/wink/osgi/internal/DummyRuntimeDelegate.java (original)
+++ incubator/wink/trunk/wink-osgi/src/main/java/org/apache/wink/osgi/internal/DummyRuntimeDelegate.java Sun Apr 22 02:09:43 2012
@@ -1,19 +1,22 @@
-/*
- * 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.
- */
+/*******************************************************************************
+ * 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.wink.osgi.internal;
 
 import javax.ws.rs.core.Application;

Modified: incubator/wink/trunk/wink-osgi/src/main/java/org/apache/wink/osgi/internal/ThreadRootResourceDeploymentConfiguration.java
URL: http://svn.apache.org/viewvc/incubator/wink/trunk/wink-osgi/src/main/java/org/apache/wink/osgi/internal/ThreadRootResourceDeploymentConfiguration.java?rev=1328772&r1=1328771&r2=1328772&view=diff
==============================================================================
--- incubator/wink/trunk/wink-osgi/src/main/java/org/apache/wink/osgi/internal/ThreadRootResourceDeploymentConfiguration.java (original)
+++ incubator/wink/trunk/wink-osgi/src/main/java/org/apache/wink/osgi/internal/ThreadRootResourceDeploymentConfiguration.java Sun Apr 22 02:09:43 2012
@@ -1,19 +1,22 @@
-/*
- * 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.
- */
+/*******************************************************************************
+ * 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.wink.osgi.internal;
 
 import java.util.Collections;