Searched defs:clone (Results 76 - 100 of 223) sorted by relevance

123456789

/forgerock/openam/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/configurator/
H A DStateData.java122 public Object clone() { method in class:StateData
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/ums/
H A DCreationTemplate.java284 // ??? Should we clone attrSet instead of keeping a reference?
295 // ??? Should we clone attrSet instead of keeping a reference?
342 // ??? Should we clone attrSet instead of keeping a reference?
412 public Object clone() { method in class:CreationTemplate
413 CreationTemplate t = (CreationTemplate) super.clone();
415 t.setRequiredAttributeSet((AttrSet) m_required.clone());
418 t.setOptionalAttributeSet((AttrSet) m_optional.clone());
421 t.setValidation((AttrSet) m_validated.clone());
543 attrSet.add((Attr) anAttr.clone());
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/
H A DReferralPrivilege.java94 public Object clone() { method in class:ReferralPrivilege
95 ReferralPrivilege clone = new ReferralPrivilege();
96 clone.name = name;
97 clone.description = description;
100 clone.realms = new HashSet<String>();
101 clone.realms.addAll(realms);
104 clone.creationDate = creationDate;
105 clone.lastModifiedDate = lastModifiedDate;
106 clone.lastModifiedBy = lastModifiedBy;
107 clone
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/
H A DConditions.java408 public Object clone() { method in class:Conditions
411 answer = (Conditions) super.clone();
422 answer.conditions.put(item, condition.clone());
H A DReferrals.java413 public Object clone() { method in class:Referrals
416 answer = (Referrals) super.clone();
418 PolicyManager.debug.error("Referrals: clone failed", cnse);
H A DRule.java464 Set clone = new HashSet();
465 clone.addAll(answer);
466 return clone;
762 * such that <code>x.clone().equals(x)</code> will be
763 * <code>true</code>. However <code>x.clone()</code>
765 * <code>x.clone() != x</code>.
770 public Object clone() { method in class:Rule
773 answer = (Rule) super.clone();
H A DSubjects.java567 public Object clone() { method in class:Subjects
570 answer = (Subjects) super.clone();
584 (Subject)(qualifiedSubject.getSubject().clone()),
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/interfaces/
H A DCondition.java719 public Object clone(); method in interface:Condition
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/plugins/
H A DAuthenticatedSharedAgents.java247 public Object clone() { method in class:AuthenticatedSharedAgents
250 theClone = (AuthenticatedSharedAgents) super.clone();
H A DAuthenticatedSharedAgentsCondition.java390 public Object clone() { method in class:AuthenticatedSharedAgentsCondition
393 theClone = (AuthenticatedSharedAgentsCondition) super.clone();
H A DIDRepoResponseProvider.java564 public Object clone() { method in class:IDRepoResponseProvider
567 theClone = (IDRepoResponseProvider)super.clone();
H A DLDAPFilterCondition.java699 public Object clone() { method in class:LDAPFilterCondition
702 theClone = (LDAPFilterCondition)super.clone();
H A DLDAPGroups.java696 public Object clone() { method in class:LDAPGroups
699 theClone = (LDAPGroups) super.clone();
H A DLDAPRoles.java587 public Object clone() { method in class:LDAPRoles
590 theClone = (LDAPRoles) super.clone();
H A DLDAPUsers.java629 public Object clone() { method in class:LDAPUsers
632 theClone = (LDAPUsers) super.clone();
H A DOrganization.java583 public Object clone() { method in class:Organization
586 theClone = (Organization) super.clone();
H A DResourceEnvIPCondition.java1278 public Object clone() { method in class:ResourceEnvIPCondition
1281 theClone = (ResourceEnvIPCondition) super.clone();
H A DSimpleTimeCondition.java500 public Object clone() { method in class:SimpleTimeCondition
503 theClone = (SimpleTimeCondition) super.clone();
519 (TimeZone) enforcementTimeZone.clone();
/forgerock/openam/openam-core/src/main/java/com/iplanet/ums/
H A DCreationTemplate.java284 // ??? Should we clone attrSet instead of keeping a reference?
295 // ??? Should we clone attrSet instead of keeping a reference?
342 // ??? Should we clone attrSet instead of keeping a reference?
412 public Object clone() { method in class:CreationTemplate
413 CreationTemplate t = (CreationTemplate) super.clone();
415 t.setRequiredAttributeSet((AttrSet) m_required.clone());
418 t.setOptionalAttributeSet((AttrSet) m_optional.clone());
421 t.setValidation((AttrSet) m_validated.clone());
543 attrSet.add((Attr) anAttr.clone());
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/
H A DConditions.java408 public Object clone() { method in class:Conditions
411 answer = (Conditions) super.clone();
422 answer.conditions.put(item, condition.clone());
H A DReferrals.java413 public Object clone() { method in class:Referrals
416 answer = (Referrals) super.clone();
418 PolicyManager.debug.error("Referrals: clone failed", cnse);
H A DRule.java437 Set clone = new HashSet();
438 clone.addAll(answer);
439 return clone;
735 * such that <code>x.clone().equals(x)</code> will be
736 * <code>true</code>. However <code>x.clone()</code>
738 * <code>x.clone() != x</code>.
743 public Object clone() { method in class:Rule
746 answer = (Rule) super.clone();
H A DSubjects.java566 public Object clone() { method in class:Subjects
569 answer = (Subjects) super.clone();
583 (Subject)(qualifiedSubject.getSubject().clone()),
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/interfaces/
H A DCondition.java719 public Object clone(); method in interface:Condition
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/plugins/
H A DAuthenticatedSharedAgents.java247 public Object clone() { method in class:AuthenticatedSharedAgents
250 theClone = (AuthenticatedSharedAgents) super.clone();

Completed in 358 milliseconds

123456789