]> source.dussan.org Git - gitblit.git/commitdiff
Update headers
authorJames Moger <james.moger@gitblit.com>
Sun, 13 Apr 2014 16:18:54 +0000 (12:18 -0400)
committerJames Moger <james.moger@gitblit.com>
Sun, 13 Apr 2014 16:18:54 +0000 (12:18 -0400)
17 files changed:
src/main/java/com/gitblit/transport/ssh/CachingPublicKeyAuthenticator.java
src/main/java/com/gitblit/transport/ssh/DisabledFilesystemFactory.java
src/main/java/com/gitblit/transport/ssh/NonForwardingFilter.java
src/main/java/com/gitblit/transport/ssh/SshDaemon.java
src/main/java/com/gitblit/transport/ssh/SshKey.java
src/main/java/com/gitblit/transport/ssh/UsernamePasswordAuthenticator.java
src/main/java/com/gitblit/transport/ssh/WelcomeShell.java
src/main/java/com/gitblit/transport/ssh/commands/BaseCommand.java
src/main/java/com/gitblit/transport/ssh/commands/CommandMetaData.java
src/main/java/com/gitblit/transport/ssh/commands/DispatchCommand.java
src/main/java/com/gitblit/transport/ssh/commands/SshCommand.java
src/main/java/com/gitblit/transport/ssh/commands/SshCommandContext.java
src/main/java/com/gitblit/transport/ssh/commands/SshCommandFactory.java
src/main/java/com/gitblit/transport/ssh/git/BaseGitCommand.java
src/main/java/com/gitblit/transport/ssh/git/GitDispatcher.java
src/main/java/com/gitblit/transport/ssh/git/Receive.java
src/main/java/com/gitblit/transport/ssh/git/Upload.java

index 4ce26d0f9afbb1748d6eb22d48fe53cb40c9d9a9..9974d261c94efb1afc18a8a50b551bec03a17af9 100644 (file)
@@ -34,8 +34,7 @@ import com.gitblit.models.UserModel;
 import com.google.common.base.Preconditions;
 
 /**
- *
- * @author Eric Myrhe
+ * Authenticates an SSH session against a public key.
  *
  */
 public class CachingPublicKeyAuthenticator implements PublickeyAuthenticator, SessionListener {
index c0578f9da9735520e93b27c8ca12b8dd909420ea..03eed746e539b53f6e8dcbf240f1aa393e7126f2 100644 (file)
@@ -1,3 +1,18 @@
+/*
+ * Copyright 2014 gitblit.com.
+ *
+ * Licensed 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 com.gitblit.transport.ssh;
 
 import java.io.IOException;
index 0ed7926c292f979ebd97394be6f5d42a4bc18677..4bd75d598c574c52e4a8d6f763d5c2cb221349f7 100644 (file)
@@ -1,3 +1,18 @@
+/*
+ * Copyright 2014 gitblit.com.
+ *
+ * Licensed 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 com.gitblit.transport.ssh;
 
 import org.apache.sshd.common.ForwardingFilter;
index 6956c1203808a91291e9be9b7f927d40ccd2de2f..a403699b475d44d9f70d72040e95a16b4cd2dbe5 100644 (file)
@@ -50,8 +50,6 @@ import com.google.common.io.Files;
  * Manager for the ssh transport. Roughly analogous to the
  * {@link com.gitblit.transport.git.GitDaemon} class.
  *
- * @author Eric Myhre
- *
  */
 public class SshDaemon {
 
index 6a20d7dd66d6c4769763a53175f7db1b84ed2b11..c2fc91c10c6fb028614145c18c75b7a171af1f34 100644 (file)
@@ -1,3 +1,18 @@
+/*
+ * Copyright 2014 gitblit.com.
+ *
+ * Licensed 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 com.gitblit.transport.ssh;
 
 import java.io.Serializable;
index 861bc22d34db44710aa763684c120a623e83eb6d..c4e69dcde49e823c7f6dce1f9b0ade44bff71623 100644 (file)
@@ -26,6 +26,8 @@ import com.gitblit.manager.IAuthenticationManager;
 import com.gitblit.models.UserModel;
 
 /**
+ *
+ * Authenticates an SSH session with username/password credentials.
  *
  * @author James Moger
  *
index acd3c15f79e9a93e5324fa95116b4e97a89bfb82..852756a70776aa9642b41d2677b1ec178bbb2cbd 100644 (file)
@@ -1,4 +1,5 @@
 /*
+ * Copyright (C) 2009 The Android Open Source Project
  * Copyright 2014 gitblit.com.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
index d6aa929f59f1edf2270bfc7487227ac467ab6955..a66c9b47bafc44d472fd9900e31a1752559601aa 100644 (file)
@@ -1,17 +1,19 @@
-// Copyright (C) 2009 The Android Open Source Project
-//
-// Licensed 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.
-
+/*
+ * Copyright (C) 2009 The Android Open Source Project
+ * Copyright 2014 gitblit.com.
+ *
+ * Licensed 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 com.gitblit.transport.ssh.commands;
 
 import java.io.BufferedWriter;
index b3a9dd2cb4218f9a7a6a1bdc93dc4dfc1fed415f..26fb63397a8171aa22952350bf632cf498f02398 100644 (file)
@@ -1,17 +1,19 @@
-//Copyright (C) 2013 The Android Open Source Project
-//
-//Licensed 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.
-
+/*
+ * Copyright (C) 2013 The Android Open Source Project
+ * Copyright 2014 gitblit.com.
+ *
+ * Licensed 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 com.gitblit.transport.ssh.commands;
 
 import static java.lang.annotation.RetentionPolicy.RUNTIME;
index 754a64f36c9ce55d1443e765d6bc5d274337f634..6683e21b048c58cf640a7aabe06a3d69cfd81a88 100644 (file)
@@ -1,17 +1,19 @@
-// Copyright (C) 2009 The Android Open Source Project
-//
-// Licensed 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.
-
+/*
+ * Copyright (C) 2009 The Android Open Source Project
+ * Copyright 2014 gitblit.com.
+ *
+ * Licensed 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 com.gitblit.transport.ssh.commands;
 
 import java.io.IOException;
index 7008b5ebba72de48dcd2952566750724bff40239..7385022e87a2d694f3b2d7bbb83f2b912f053dde 100644 (file)
@@ -1,17 +1,19 @@
-// Copyright (C) 2012 The Android Open Source Project
-//
-// Licensed 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.
-
+/*
+ * Copyright (C) 2012 The Android Open Source Project
+ * Copyright 2014 gitblit.com.
+ *
+ * Licensed 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 com.gitblit.transport.ssh.commands;
 
 import java.io.IOException;
index 15f7a8fe78fe4c00a948f824a7da81f76a39ba53..ed828c6391f4725ffdd7af41170eb43bcb18b076 100644 (file)
@@ -1,4 +1,5 @@
 /*
+ * Copyright (C) 2009 The Android Open Source Project
  * Copyright 2014 gitblit.com.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
index 55090fcfcf3e27b0b00c91145a9dbc31a4908fa6..599d94b3838cc75e3908448316403aa87f3d45cd 100644 (file)
@@ -1,4 +1,5 @@
 /*
+ * Copyright (C) 2009 The Android Open Source Project
  * Copyright 2014 gitblit.com.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
@@ -44,11 +45,6 @@ import com.gitblit.utils.WorkQueue;
 import com.google.common.util.concurrent.Atomics;
 import com.google.common.util.concurrent.ThreadFactoryBuilder;
 
-/**
- *
- * @author Eric Myhre
- *
- */
 public class SshCommandFactory implements CommandFactory {
        private static final Logger logger = LoggerFactory.getLogger(SshCommandFactory.class);
 
index fcb06568016e8c5fcccd6638ffe339984d6647c3..029dd7350163d996acbd81a854618483b030a47d 100644 (file)
@@ -1,4 +1,5 @@
 /*
+ * Copyright (C) 2009 The Android Open Source Project
  * Copyright 2014 gitblit.com.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
@@ -29,10 +30,6 @@ import com.gitblit.git.RepositoryResolver;
 import com.gitblit.transport.ssh.SshDaemonClient;
 import com.gitblit.transport.ssh.commands.BaseCommand;
 
-/**
- * @author Eric Myhre
- *
- */
 abstract class BaseGitCommand extends BaseCommand {
        @Argument(index = 0, metaVar = "REPOSITORY", required = true, usage = "repository name")
        protected String repository;
index 64f9c8d0f66d70f67d1492127d3971edae7b5115..6447cab32948e2382649ea19af45a45f1e49c907 100644 (file)
@@ -1,4 +1,5 @@
 /*
+ * Copyright (C) 2009 The Android Open Source Project
  * Copyright 2014 gitblit.com.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
index f0d86f0da07ce110ac6d0dd052a2a7342eb47b4e..3e7469f9508793429d88a8a757198958d541f3f5 100644 (file)
@@ -1,4 +1,5 @@
 /*
+ * Copyright (C) 2009 The Android Open Source Project
  * Copyright 2014 gitblit.com.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
index 11a33cefe8f23c29475792327cf190bec6c648c9..3f93fe1a0f1cd14c10d92fa4eed4e3e9f56fdbf2 100644 (file)
@@ -1,4 +1,5 @@
 /*
+ * Copyright (C) 2009 The Android Open Source Project
  * Copyright 2014 gitblit.com.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");