You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2012/11/30 09:22:15 UTC

svn commit: r1415537 - /tomcat/trunk/java/org/apache/tomcat/websocket/PojoMethodMapping.java

Author: markt
Date: Fri Nov 30 08:22:15 2012
New Revision: 1415537

URL: http://svn.apache.org/viewvc?rev=1415537&view=rev
Log:
Fix eol

Modified:
    tomcat/trunk/java/org/apache/tomcat/websocket/PojoMethodMapping.java   (contents, props changed)

Modified: tomcat/trunk/java/org/apache/tomcat/websocket/PojoMethodMapping.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/websocket/PojoMethodMapping.java?rev=1415537&r1=1415536&r2=1415537&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/tomcat/websocket/PojoMethodMapping.java (original)
+++ tomcat/trunk/java/org/apache/tomcat/websocket/PojoMethodMapping.java Fri Nov 30 08:22:15 2012
@@ -1,79 +1,79 @@
-/*
- *  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.tomcat.websocket;
-
-import java.lang.reflect.Method;
-
-import javax.websocket.WebSocketClose;
-import javax.websocket.WebSocketError;
-import javax.websocket.WebSocketOpen;
-
-public class PojoMethodMapping {
-
-    private final Method onOpen;
-    private final Method onClose;
-    private final Method onError;
-
-    public PojoMethodMapping(Class<?> clazzPojo, String path) {
-        Method open = null;
-        Method close = null;
-        Method error = null;
-        Method[] methods = clazzPojo.getMethods();
-        for (int i = 0; i < methods.length; i++) {
-            if (open == null &&
-                    methods[i].getAnnotation(WebSocketOpen.class) != null) {
-                open = methods[i];
-            } else if (close == null &&
-                    methods[i].getAnnotation(WebSocketClose.class) != null) {
-                close = methods[i];
-            } else if (error == null &&
-                    methods[i].getAnnotation(WebSocketError.class) != null) {
-                error = methods[i];
-            }
-        }
-        this.onOpen = open;
-        this.onClose = close;
-        this.onError = error;
-    }
-
-    public Method getOnOpen() {
-        return onOpen;
-    }
-
-    public Object[] getOnOpenArgs(String path) {
-        // TODO Auto-generated method stub
-        return null;
-    }
-
-    public Method getOnClose() {
-        return onClose;
-    }
-
-    public Object[] getOnCloseArgs(String path) {
-        // TODO Auto-generated method stub
-        return null;
-    }
-
-    public Method getOnError() {
-        return onError;
-    }
-
-    public Object[] getOnErrorArgs(String path) {
-        // TODO Auto-generated method stub
-        return null;
-    }
-}
+/*
+ *  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.tomcat.websocket;
+
+import java.lang.reflect.Method;
+
+import javax.websocket.WebSocketClose;
+import javax.websocket.WebSocketError;
+import javax.websocket.WebSocketOpen;
+
+public class PojoMethodMapping {
+
+    private final Method onOpen;
+    private final Method onClose;
+    private final Method onError;
+
+    public PojoMethodMapping(Class<?> clazzPojo, String path) {
+        Method open = null;
+        Method close = null;
+        Method error = null;
+        Method[] methods = clazzPojo.getMethods();
+        for (int i = 0; i < methods.length; i++) {
+            if (open == null &&
+                    methods[i].getAnnotation(WebSocketOpen.class) != null) {
+                open = methods[i];
+            } else if (close == null &&
+                    methods[i].getAnnotation(WebSocketClose.class) != null) {
+                close = methods[i];
+            } else if (error == null &&
+                    methods[i].getAnnotation(WebSocketError.class) != null) {
+                error = methods[i];
+            }
+        }
+        this.onOpen = open;
+        this.onClose = close;
+        this.onError = error;
+    }
+
+    public Method getOnOpen() {
+        return onOpen;
+    }
+
+    public Object[] getOnOpenArgs(String path) {
+        // TODO Auto-generated method stub
+        return null;
+    }
+
+    public Method getOnClose() {
+        return onClose;
+    }
+
+    public Object[] getOnCloseArgs(String path) {
+        // TODO Auto-generated method stub
+        return null;
+    }
+
+    public Method getOnError() {
+        return onError;
+    }
+
+    public Object[] getOnErrorArgs(String path) {
+        // TODO Auto-generated method stub
+        return null;
+    }
+}

Propchange: tomcat/trunk/java/org/apache/tomcat/websocket/PojoMethodMapping.java
------------------------------------------------------------------------------
    svn:eol-style = native



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org