Searched defs:mappedName (Results 1 - 5 of 5) sorted by relevance

/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/
H A DMessageDestinationDescriptor.java63 private String mappedName; field in class:MessageDestinationDescriptor
132 if (mappedName != null && ! mappedName.equals("")) {
133 return mappedName;
143 return mappedName;
146 public void setMappedName(String mappedName) { argument
147 this.mappedName = mappedName;
H A DEjbAbstractDescriptor.java68 private String mappedName = ""; field in class:EjbAbstractDescriptor
237 return (mappedName != null)? mappedName : "";
240 public void setMappedName(String mappedName) { argument
241 this.mappedName = mappedName;
H A DEnvironmentProperty.java92 protected String mappedName; field in class:EnvironmentProperty
283 mappedName = mName;
287 return (mappedName != null)? mappedName : "";
H A DServiceReferenceDescriptor.java64 private String mappedName; field in class:ServiceReferenceDescriptor
205 mappedName = other.mappedName;
259 return mappedName;
263 mappedName = value;
/glassfish-3.1.2/ejb/ejb-connector/src/main/java/org/glassfish/ejb/deployment/annotation/handlers/
H A DAbstractEjbHandler.java584 protected void doMappedNameProcessing(String mappedName, argument
587 // Set mappedName() if a value has been given in the annotation and
590 if( !mappedName.equals("") ) {
591 ejbDesc.setMappedName(mappedName);

Completed in 33 milliseconds