Searched refs:callProperties (Results 1 - 3 of 3) sorted by relevance

/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/
H A DServiceRefPortInfo.java79 private Set callProperties; field in class:ServiceRefPortInfo
106 callProperties = new HashSet(); // NameValuePairDescriptor
107 for (Iterator i = other.callProperties.iterator(); i.hasNext();) {
108 callProperties.add(new NameValuePairDescriptor(
117 callProperties = new HashSet();
368 return callProperties;
377 for(Iterator iter = callProperties.iterator(); iter.hasNext();) {
399 callProperties.add(property);
413 callProperties.remove(property);
H A DServiceReferenceDescriptor.java105 private Set callProperties; field in class:ServiceReferenceDescriptor
233 callProperties = new HashSet(); // NameValuePairDescriptor
234 for (Iterator i = other.callProperties.iterator(); i.hasNext();) {
235 callProperties.add(new NameValuePairDescriptor(
247 callProperties = new HashSet();
255 callProperties = new HashSet();
600 return callProperties;
605 for(Iterator iter = callProperties.iterator(); iter.hasNext();) {
627 callProperties.add(property);
641 callProperties
[all...]
/glassfish-3.1.2/webservices/jsr109-impl/src/main/java/org/glassfish/webservices/
H A DServiceInvocationHandler.java510 Set callProperties = getPropertiesForCall(methodType, args);
512 if( callProperties != null ) {
514 setCallProperties(calls[callIndex], callProperties);
521 Set callProperties = null;
536 callProperties = portInfo.getCallProperties();
543 callProperties = serviceRef.getCallProperties();
548 return callProperties;
551 private void setCallProperties(Call call, Set callProperties) { argument
552 for(Iterator iter = callProperties.iterator(); iter.hasNext();) {

Completed in 576 milliseconds