Searched defs:clone (Results 26 - 50 of 223) sorted by relevance

123456789

/forgerock/openam-v13/openam-distribution/src/main/amserver/samples/server/source/com/sun/identity/samples/policy/
H A DSampleCondition.java222 public Object clone() { method in class:SampleCondition
225 theClone = super.clone();
H A DSampleResponseProvider.java272 public Object clone() { method in class:SampleResponseProvider
275 theClone = (SampleResponseProvider)super.clone();
H A DSampleSubject.java253 public Object clone() { method in class:SampleSubject
/forgerock/openam-v13/openam-federation/OpenFM/src/main/java/com/sun/identity/policy/plugins/
H A DWebServicesClients.java311 public Object clone() { method in class:WebServicesClients
314 theClone = (WebServicesClients) super.clone();
/forgerock/openam/openam-core/src/main/java/com/iplanet/ums/
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/sun/identity/policy/
H A DSharedSubject.java294 public Object clone() { method in class:SharedSubject
297 theClone = super.clone();
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/interfaces/
H A DResponseProvider.java191 public Object clone(); method in interface:ResponseProvider
/forgerock/openam/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.java479 public Object clone() { method in class:AMIdentitySubject
482 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/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/sms/
H A DServersResourceProvider.java266 @Action(name = "clone",
268 description = SERVERS_RESOURCE + "action.clone." + DESCRIPTION
270 request = @Schema(schemaResource = "ServersResource.clone.request.schema.json"),
272 public Promise<ActionResponse, ResourceException> clone( method in class:ServersResourceProvider
312 return new InternalServerErrorException("Failed to clone server", e).asPromise();
/forgerock/openam/openam-distribution/src/main/amserver/samples/server/source/com/sun/identity/samples/policy/
H A DSampleCondition.java222 public Object clone() { method in class:SampleCondition
225 theClone = super.clone();
H A DSampleResponseProvider.java272 public Object clone() { method in class:SampleResponseProvider
275 theClone = (SampleResponseProvider)super.clone();
H A DSampleSubject.java253 public Object clone() { method in class:SampleSubject
/forgerock/openam/openam-federation/OpenFM/src/main/java/com/sun/identity/policy/plugins/
H A DWebServicesClients.java311 public Object clone() { method in class:WebServicesClients
314 theClone = (WebServicesClients) super.clone();
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/services/ldap/
H A DAttr.java147 _ldapAttribute = attr; // attr.clone() ?
172 ldapAttribute.add(value); // clone?
175 ldapAttribute = _ldapAttribute; // clone?
273 _byteValues.add(value); // clone?
475 // Not cloning the value before returning. Do we need to clone?
493 // Not cloning the values before returning. Do we need to clone?
556 public Object clone() { method in class:Attr
562 theClone = (Attr) super.clone();
571 theClone._ldapAttribute = _ldapAttribute; // clone?
H A DAttrSet.java222 // We may probably want to clone. Not cloning now.
359 public Object clone() { method in class:AttrSet
363 attrSet.add((Attr) ((Attr) _attrs.get(i)).clone());

Completed in 51 milliseconds

123456789