View Javadoc
1   package edu.internet2.middleware.grouper.grouperUi.beans.ui;
2   
3   public class GrouperPasswordContainer {
4     
5     /**
6      * gui grouper password user is currently viewing/editing/adding
7      */
8     private GuiGrouperPassword guiGrouperPassword;
9     
10    
11    private String privateKey;
12    
13    
14    public String getPrivateKey() {
15      return privateKey;
16    }
17  
18  
19    
20    public void setPrivateKey(String privateKey) {
21      this.privateKey = privateKey;
22    }
23  
24  
25    public GuiGrouperPassword getGuiGrouperPassword() {
26      return guiGrouperPassword;
27    }
28  
29    
30    public void setGuiGrouperPassword(GuiGrouperPassword guiGrouperPassword) {
31      this.guiGrouperPassword = guiGrouperPassword;
32    }
33    
34  
35  }