1 package org.openmdx.security.realm1.cci; 14 15 public interface Principal 16 extends 17 org.openmdx.base.cci.BasicObject { 18 28 public org.openmdx.security.realm1.cci.Credential getCredential( 29 int index 30 ); 31 32 40 public java.util.Collection getCredential( 41 ); 42 43 51 public void addCredential ( 52 int index, 53 org.openmdx.security.realm1.cci.Credential newValue 54 ); 55 56 63 public void addCredential ( 64 org.openmdx.security.realm1.cci.Credential newValue 65 ); 66 67 73 public void removeCredential ( 74 int index 75 ); 76 83 public String getDescription( 84 ); 85 86 90 91 96 public void setDescription( 97 String newValue 98 ); 99 100 108 public boolean isDisabled( 109 ); 110 111 119 public void setDisabled( 120 boolean newValue 121 ); 122 123 133 public org.openmdx.security.realm1.cci.Group getIsMemberOf( 134 int index 135 ); 136 137 145 public java.util.Collection getIsMemberOf( 146 ); 147 148 156 public void addIsMemberOf ( 157 int index, 158 org.openmdx.security.realm1.cci.Group newValue 159 ); 160 161 168 public void addIsMemberOf ( 169 org.openmdx.security.realm1.cci.Group newValue 170 ); 171 172 178 public void removeIsMemberOf ( 179 int index 180 ); 181 189 public String getName( 190 ); 191 192 200 public org.openmdx.security.realm1.cci.Realm getRealm( 201 ); 202 203 211 public org.openmdx.security.realm1.cci.Subject getSubject( 212 ); 213 214 222 public void setSubject( 223 org.openmdx.security.realm1.cci.Subject newValue 224 ); 225 226 } 230 | Popular Tags |