/glassfish-3.1.2/common/common-util/src/main/java/com/sun/appserv/management/client/prefs/ |
H A D | LoginInfo.java | 21 * file that accompanied this code. 44 * An immutable class that represents an arbitrary LoginInfo for Appserver Administration Client. A LoginInfo 86 final LoginInfo that = (LoginInfo) other; 87 same = this.host.equals(that.host) && 88 this.port == that.port && 89 this.user.equals(that.user) && 90 this.password.equals(that.password); 109 public int compareTo(final LoginInfo that) { argument 111 final String thatKey = that.user + that [all...] |
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/acl/ |
H A D | WebResource.java | 21 * file that accompanied this code. 89 WebResource that = (WebResource) resource; 92 if(!getMethod().equals(that.getMethod())) 96 if (that.wildcard) 98 return that.path.startsWith(path); 101 return (that.path.length() > this.path.length()) && 102 that.path.startsWith(this.path); 104 if (that.wildcard) { 109 return this.path.equals(that.path);
|
/glassfish-3.1.2/security/javax.security.jacc/src/main/java/javax/security/jacc/ |
H A D | EJBMethodPermission.java | 21 * file that accompanied this code. 56 * that identifies the target EJB. 137 * An implementation must be flexible such that it supports additional 144 * A null or empty string methodSpec indicates that the permission applies 146 * empty string matches all methods of the EJB that match the 150 * empty string matches all methods of the EJB that match the 154 * of the EJB that match the methodNameSpec and methodInterface elements 163 * EJB that match the methodNameSpec and methodInterfaceSpec elements of 187 * @param methodName A string that may be used to indicate the method of 189 * indicates that th [all...] |
H A D | URLPatternSpec.java | 21 * file that accompanied this code. 73 * Creates a new URLPatternSpec that identifies the web 92 * <li> No pattern may exist in the URLPatternList that matches the 99 * pattern, only exact patterns that are matched by the first 108 * that identifies the application 148 URLPatternSpec that = (URLPatternSpec) o; 150 return this.toString().equals(that.toString()); 201 * <li> this pattern is a path-prefix pattern (that is, it starts with 205 * <li> this pattern is an extension pattern (that is, it starts with 213 * @param that "thi 220 implies(URLPatternSpec that) argument [all...] |
H A D | HttpMethodSpec.java | 21 * file that accompanied this code. 200 public boolean equals (Object that) argument 203 if (that != null && that instanceof HttpMethodSpec) { 204 if (that == this) { 207 rvalue = this.hashCode() == ((HttpMethodSpec) that).hashCode(); 213 boolean implies (HttpMethodSpec that) argument 221 else if (that.standardMap == 0 && that.extensionSet == null) { 225 else if (this.exceptionList && that [all...] |
H A D | WebResourcePermission.java | 21 * file that accompanied this code. 98 * The name contains a URLPatternSpec that identifies the web 110 * may occur anywhere in a URLPatternSpec that an exact URLPattern may occur. 118 * <li> No pattern may exist in the URLPatternList that matches the 125 * pattern, only exact patterns that are matched by the first 138 * (that is, 1*[any CHAR except CTLs or separators]) 154 * A null or empty string HTTPMethodSpec indicates that the permission 162 * @param name the URLPatternSpec that identifies the application 189 * @param urlPatternSpec the URLPatternSpec that identifies the 218 * (HttpServletRequest.getRequestURI()) that begin [all...] |
H A D | WebUserDataPermission.java | 21 * file that accompanied this code. 115 * The name contains a URLPatternSpec that identifies the web 127 * may occur anywhere in a URLPatternSpec that an exact URLPattern may occur. 135 * <li> No pattern may exist in the URLPatternList that matches the 142 * pattern, only exact patterns that are matched by the first 151 * that may be followed by a transportType separated from the HTTP 156 * (that is, 1*[any CHAR except CTLs or separators]) 188 * indicates that the associated resources may be accessed 191 * @param name the URLPatternSpec that identifies the application 219 * @param urlPatternSpec the URLPatternSpec that identifie [all...] |
H A D | EJBRoleRefPermission.java | 21 * file that accompanied this code. 53 * that identifies the EJB in whose context the permission is 93 * @param name the ejb-name that identifies the EJB 129 EJBRoleRefPermission that = (EJBRoleRefPermission) o; 131 if (!this.getName().equals(that.getName())) return false; 133 return this.actions.equals(that.actions); 185 * <li> with name equivalent to that of this EJBRoleRefPermission, and 186 * <li> with the role reference equivalent to that of this
|
H A D | WebRoleRefPermission.java | 21 * file that accompanied this code. 93 * @param name the servlet-name that identifies the application 130 WebRoleRefPermission that = (WebRoleRefPermission) o; 132 if (!this.getName().equals(that.getName())) return false; 134 return this.actions.equals(that.actions);
|
/glassfish-3.1.2/jbi/serviceengine/sun-javaee-engine/src/main/java/com/sun/enterprise/jbi/serviceengine/bridge/transport/ |
H A D | JBITransportPipe.java | 21 * file that accompanied this code. 55 * This is the main Pipe that is used by JAX-WS client runtime to sendRequest the 82 private JBITransportPipe(JBITransportPipe that, PipeCloner cloner) { argument 83 super(that, cloner); 84 if(that != null) { 85 setWSDLLocation(that.getWSDLLocation()); 86 setWSDLPort(that.getWSDLPort()); 87 setServiceName(that.getServiceName());
|
/glassfish-3.1.2/jms/admin/src/main/java/com/sun/messaging/jmq/management/ |
H A D | MQRMIClientSocketFactory.java | 17 * Sun in the GPL Version 2 section of the License file that accompanied this 78 * The wildcard "*" here is something that could be set on the server 81 * Remember that this factory is created by the server. 115 MQRMIClientSocketFactory that = (MQRMIClientSocketFactory)obj; 118 if ((that.hostname == null) || !that.hostname.equals(this.hostname)) { 122 if (that.hostname != null) { 127 if (this.isBrokerHostTrusted != that.isBrokerHostTrusted) { 131 if (this.useSSL != that.useSSL) { 155 //This is here for QA to verify that SS [all...] |
/glassfish-3.1.2/admin/monitor/src/main/java/com/sun/enterprise/admin/monitor/registry/ |
H A D | MonitoringLevel.java | 21 * file that accompanied this code. 93 * <p>Checks that <i>obj</i> is a MonitoringLevel, and has the same name as 107 MonitoringLevel that = (MonitoringLevel) obj; 109 return (this.name.equals(that.name));
|
/glassfish-3.1.2/packager/jersey/src/main/resources/ |
H A D | pkg_proto.py | 23 # file that accompanied this code. 54 If you are about to upgrade Jersey, you might want to install that new package as well, otherwise Jersey examples and javadocs will get deleted. \ 55 Also please note, that from 1.0.3 version on, Jersey docs and examples get installed into <as_home>/glassfish/jersey directory instead of just <as_home>/jersey. \ 60 so that developers may extend Jersey to suite their needs.",
|
/glassfish-3.1.2/common/internal-api/src/main/java/org/glassfish/internal/embedded/ |
H A D | EmbeddedFileSystem.java | 21 * file that accompanied this code. 49 * Abstraction for a virtual filesystem that be used by the server to store important files. 165 * Builds a configured embedded file system instance that can be used to configure 219 void copy(Builder that) { argument 220 that.autoDelete(autoDelete); 221 that.configurationFile(configFile, readOnlyConfigFile); 222 that.installRoot(installRoot, cookedMode); 223 that.instanceRoot(instanceRoot);
|
/glassfish-3.1.2/webservices/jsr109-impl/src/main/java/org/glassfish/webservices/ |
H A D | MonitoringPipe.java | 21 * file that accompanied this code. 85 public MonitoringPipe(MonitoringPipe that, PipeCloner cloner) { argument 86 super(that, cloner); 87 this.endpoint = that.endpoint; 88 this.seiModel = that.seiModel; 89 this.wsdlModel = that.wsdlModel; 90 this.owner = that.owner;
|
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/jauth/ |
H A D | AuthPolicy.java | 21 * file that accompanied this code. 47 * This class is used to define the message authentication policy that informs 52 * either the message sender or the party that established the message contents. 258 AuthPolicy that = (AuthPolicy)o; 259 if (this.authenticateSource == that.authenticateSource && 260 this.authenticateRecipient == that.authenticateRecipient && 261 this.recipientBeforeContent == that.recipientBeforeContent) {
|
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/codegen/otsidl/ |
H A D | ResourceStatusHelper.java | 21 * file that accompanied this code. 55 public static void insert (org.omg.CORBA.Any a, com.sun.jts.codegen.otsidl.ResourceStatus that) argument 59 write (out, that);
|
H A D | TransAncestryHelper.java | 21 * file that accompanied this code. 55 public static void insert (org.omg.CORBA.Any a, org.omg.CosTransactions.TransIdentity[] that) argument 59 write (out, that);
|
H A D | CoordinatorResourceHelper.java | 21 * file that accompanied this code. 57 public static void insert (org.omg.CORBA.Any a, com.sun.jts.codegen.otsidl.CoordinatorResource that) argument 61 write (out, that);
|
H A D | JControlHelper.java | 21 * file that accompanied this code. 57 public static void insert (org.omg.CORBA.Any a, com.sun.jts.codegen.otsidl.JControl that) argument 61 write (out, that);
|
H A D | JCoordinatorHelper.java | 21 * file that accompanied this code. 57 public static void insert (org.omg.CORBA.Any a, com.sun.jts.codegen.otsidl.JCoordinator that) argument 61 write (out, that);
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/deploy/ |
H A D | ApplicationParameter.java | 21 * file that accompanied this code. 65 * Representation of a context initialization parameter that is configured 172 ApplicationParameter that = (ApplicationParameter) obj; 173 return this.name.equals(that.name);
|
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/provider/ |
H A D | PolicyParser.java | 21 * file that accompanied this code. 72 * populates the Policy object. The Policy object is agnostic in that 500 debug.println("disallowing principal that " + 1050 PrincipalEntry that = (PrincipalEntry)obj; 1051 if (this.principalClass.equals(that.principalClass) && 1052 this.principalName.equals(that.principalName)) { 1133 PermissionEntry that = (PermissionEntry) obj; 1136 if (that.permission != null) return false; 1138 if (!this.permission.equals(that.permission)) return false; 1142 if (that [all...] |
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/codegen/jtsxa/ |
H A D | OTSResourceHelper.java | 21 * file that accompanied this code. 57 public static void insert (org.omg.CORBA.Any a, com.sun.jts.codegen.jtsxa.OTSResource that) argument 61 write (out, that);
|
/glassfish-3.1.2/security/webservices.security/src/main/java/com/sun/enterprise/security/webservices/ |
H A D | CommonServerSecurityTube.java | 21 * file that accompanied this code. 96 protected CommonServerSecurityTube(CommonServerSecurityTube that, argument 99 super(that, cloner); 100 // we can share the helper for all pipes so that the remove 102 this.helper = that.helper; 103 this.isHttpBinding = that.isHttpBinding;
|