ComponentWithBrowseButton - optional remove listener on hide
[fedora-idea.git] / platform / platform-impl / src / com / intellij / errorreport / bean / NotifierBean.java
blob193fcfa82f1519df114a76f29842f919f2469e29
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 com.intellij.errorreport.bean;
18 /**
19 * Created by IntelliJ IDEA.
20 * User: stathik
21 * Date: May 5, 2003
22 * Time: 9:36:45 PM
23 * To change this template use Options | File Templates.
25 public class NotifierBean {
26 private String id;
27 private String email;
28 private String itnLogin;
29 private String itnPassword;
31 public String getItnPassword() {
32 return itnPassword;
35 public void setItnPassword(String eapPassword) {
36 itnPassword = eapPassword;
39 public String getId() {
40 return id;
43 public void setId(String id) {
44 this.id = id;
47 public String getEmail() {
48 return email;
51 public void setEmail(String email) {
52 this.email = email;
55 public String getItnLogin() {
56 return itnLogin;
59 public void setItnLogin(String itnLogin) {
60 this.itnLogin = itnLogin;