IDEA-51354 (Not logged to SVN notification: allow to copy message to clipboard)
[fedora-idea.git] / plugins / svn4idea / src / org / jetbrains / idea / svn / SvnProxyAuthenticationNotifier.java
blob0a0d8f2bba27be906e4e57df4b9da4b61b27b3fc
1 /*
2 * Copyright 2000-2009 JetBrains s.r.o.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package org.jetbrains.idea.svn;
18 import com.intellij.notification.NotificationType;
19 import com.intellij.openapi.project.Project;
20 import com.intellij.openapi.vcs.impl.GenericNotifierImpl;
21 import org.jetbrains.annotations.NotNull;
23 // todo be done
24 // todo : two kinds. positive: either into common proxy, or into system properties
25 public class SvnProxyAuthenticationNotifier extends GenericNotifierImpl<String, String> {
26 public SvnProxyAuthenticationNotifier(Project project, @NotNull String groupId, @NotNull String title, @NotNull NotificationType type) {
27 super(project, groupId, title, type);
30 @Override
31 protected boolean ask(String obj) {
32 return false; //To change body of implemented methods use File | Settings | File Templates.
35 @NotNull
36 @Override
37 protected String getKey(String obj) {
38 return null; //To change body of implemented methods use File | Settings | File Templates.
41 @NotNull
42 @Override
43 protected String getNotificationContent(String obj) {
44 return null; //To change body of implemented methods use File | Settings | File Templates.
47 @NotNull
48 @Override
49 protected String getToString(String obj) {
50 return null; //To change body of implemented methods use File | Settings | File Templates.