Searched defs:clone (Results 1 - 25 of 223) sorted by relevance

123456789

/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/ums/
H A DTemplate.java84 public Object clone() { method in class:Template
86 return super.clone();
H A DSearchTemplate.java230 // ??? Should we clone attrSet instead of keeping a reference?
241 public Object clone() { method in class:SearchTemplate
242 SearchTemplate t = (SearchTemplate) super.clone();
244 t.setAttributeSet((AttrSet) m_attrSet.clone());
/forgerock/openam/openam-core/src/main/java/com/iplanet/ums/
H A DTemplate.java84 public Object clone() { method in class:Template
86 return super.clone();
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/security/keystore/
H A DAMPassword.java68 * Clones the password. The resulting clone will be completely independent
72 public synchronized Object clone() { method in class:AMPassword
75 dolly.password = (char[]) password.clone();
98 return charToByte( (char[])password.clone() );
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/security/keystore/
H A DAMPassword.java68 * Clones the password. The resulting clone will be completely independent
72 public synchronized Object clone() { method in class:AMPassword
75 dolly.password = (char[]) password.clone();
98 return charToByte( (char[])password.clone() );
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/service/model/
H A DSMDescriptionData.java55 public SMDescriptionData(SMDescriptionData clone) { argument
56 this.descriptionID = clone.descriptionID;
57 this.wsdlUri = clone.wsdlUri;
58 this.nameSpace = clone.nameSpace;
59 this.localPart = clone.localPart;
60 this.endPointUrl = clone.endPointUrl;
61 this.soapAction = clone.soapAction;
62 this.isBriefSoapHttp = clone.isBriefSoapHttp;
63 this.securityMechId = clone.securityMechId;
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/services/ldap/aci/
H A DQualifiedCollection.java91 public Object clone() { method in class:QualifiedCollection
94 theClone = (QualifiedCollection) super.clone();
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/interfaces/
H A DSubject.java213 public Object clone(); method in interface:Subject
H A DResponseProvider.java191 public Object clone(); method in interface:ResponseProvider
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/service/model/
H A DSMDescriptionData.java55 public SMDescriptionData(SMDescriptionData clone) { argument
56 this.descriptionID = clone.descriptionID;
57 this.wsdlUri = clone.wsdlUri;
58 this.nameSpace = clone.nameSpace;
59 this.localPart = clone.localPart;
60 this.endPointUrl = clone.endPointUrl;
61 this.soapAction = clone.soapAction;
62 this.isBriefSoapHttp = clone.isBriefSoapHttp;
63 this.securityMechId = clone.securityMechId;
/forgerock/openam/openam-core/src/main/java/com/iplanet/services/ldap/aci/
H A DQualifiedCollection.java91 public Object clone() { method in class:QualifiedCollection
94 theClone = (QualifiedCollection) super.clone();
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/interfaces/
H A DSubject.java213 public Object clone(); method in interface:Subject
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/
H A DSharedSubject.java294 public Object clone() { method in class:SharedSubject
297 theClone = super.clone();
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/plugins/
H A DAMIdentityMembershipCondition.java256 public Object clone() { method in class:AMIdentityMembershipCondition
259 theClone = (AMIdentityMembershipCondition) super.clone();
H A DAMIdentitySubject.java484 public Object clone() { method in class:AMIdentitySubject
487 theClone = (AMIdentitySubject) super.clone();
H A DAuthRoleCondition.java249 public Object clone() { method in class:AuthRoleCondition
252 theClone = (AuthRoleCondition) super.clone();
H A DAuthenticateToRealmCondition.java281 public Object clone() { method in class:AuthenticateToRealmCondition
284 theClone = (AuthenticateToRealmCondition) super.clone();
H A DAuthenticateToServiceCondition.java296 public Object clone() { method in class:AuthenticateToServiceCondition
299 theClone = (AuthenticateToServiceCondition) super.clone();
H A DAuthenticatedAgents.java185 public Object clone() { method in class:AuthenticatedAgents
188 theClone = (AuthenticatedAgents) super.clone();
H A DAuthenticatedUsers.java174 public Object clone() { method in class:AuthenticatedUsers
177 theClone = (AuthenticatedUsers) super.clone();
H A DPrivilegeCondition.java157 * Returns a clone of this object.
159 * @return clone of this object.
162 public Object clone() { method in class:PrivilegeCondition
165 theClone = (PrivilegeCondition)super.clone();
H A DPrivilegeSubject.java177 public Object clone() { method in class:PrivilegeSubject
180 cloned = (PrivilegeSubject)super.clone();
H A DSessionPropertyCondition.java320 public Object clone() { method in class:SessionPropertyCondition
323 theClone = (SessionPropertyCondition)super.clone();
H A DUserSelfCheckCondition.java380 public Object clone() { method in class:UserSelfCheckCondition
383 theClone = (UserSelfCheckCondition) super.clone();
/forgerock/authenticator-android-v2/app/src/main/java/com/google/android/apps/authenticator/
H A DBase32String.java154 public Object clone() throws CloneNotSupportedException { method in class:Base32String

Completed in 156 milliseconds

123456789