Searched defs:inputName (Results 1 - 16 of 16) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/security/auth/callback/
H A DNameCallback.java53 private String inputName; field in class:NameCallback
129 this.inputName = name;
142 return inputName;
/openjdk7/jdk/src/share/classes/com/sun/jndi/cosnaming/
H A DExceptionMapper.java46 CNCtx ctx, NameComponent[] inputName) throws NamingException {
58 return tryFed((NotFound)e, ctx, inputName);
73 if (inputName != null && (inputName.length > rest.length)) {
75 new NameComponent[inputName.length - rest.length];
76 System.arraycopy(inputName, 0, resolvedName, 0, resolvedName.length);
79 // is the part of inputName minus rest_of_name
104 NameComponent[] inputName) throws NamingException {
116 if (rest.length == 1 && inputName != null) {
118 NameComponent lastIn = inputName[inputNam
45 mapException(Exception e, CNCtx ctx, NameComponent[] inputName) argument
103 tryFed(NotFound e, CNCtx ctx, NameComponent[] inputName) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DX400Address.java385 * Return type of constraint inputName places on this name:<ul>
394 * @param inputName to be checked for being constrained
399 public int constrains(GeneralNameInterface inputName) throws UnsupportedOperationException { argument
401 if (inputName == null)
403 else if (inputName.getType() != NAME_X400)
H A DDNSName.java166 * Return type of constraint inputName places on this name:<ul>
190 * @param inputName to be checked for being constrained
195 public int constrains(GeneralNameInterface inputName) throws UnsupportedOperationException { argument
197 if (inputName == null)
199 else if (inputName.getType() != NAME_DNS)
203 (((DNSName)inputName).getName()).toLowerCase(Locale.ENGLISH);
H A DOIDName.java136 * Return type of constraint inputName places on this name:<ul>
145 * @param inputName to be checked for being constrained
150 public int constrains(GeneralNameInterface inputName) throws UnsupportedOperationException { argument
152 if (inputName == null)
154 else if (inputName.getType() != NAME_OID)
156 else if (this.equals((OIDName)inputName))
H A DRFC822Name.java178 * @param inputName to be checked for being constrained
183 public int constrains(GeneralNameInterface inputName) throws UnsupportedOperationException { argument
185 if (inputName == null)
187 else if (inputName.getType() != (GeneralNameInterface.NAME_RFC822)) {
192 (((RFC822Name)inputName).getName()).toLowerCase(Locale.ENGLISH);
H A DEDIPartyName.java228 * @param inputName to be checked for being constrained
233 public int constrains(GeneralNameInterface inputName) throws UnsupportedOperationException { argument
235 if (inputName == null)
237 else if (inputName.getType() != NAME_EDI)
H A DGeneralNameInterface.java78 * Return type of constraint inputName places on this name:<ul>
87 * @param inputName to be checked for being constrained
92 int constrains(GeneralNameInterface inputName) throws UnsupportedOperationException; argument
H A DIPAddressName.java365 * Return type of constraint inputName places on this name:<ul>
388 * @param inputName to be checked for being constrained
393 public int constrains(GeneralNameInterface inputName) argument
396 if (inputName == null)
398 else if (inputName.getType() != NAME_IP)
400 else if (((IPAddressName)inputName).equals(this))
403 byte[] otherAddress = ((IPAddressName)inputName).getBytes();
H A DOtherName.java226 * Return type of constraint inputName places on this name:<ul>
239 * @param inputName to be checked for being constrained
244 public int constrains(GeneralNameInterface inputName) { argument
246 if (inputName == null) {
248 } else if (inputName.getType() != NAME_ANY) {
H A DURIName.java292 * Return type of constraint inputName places on this name:<ul>
315 * @param inputName to be checked for being constrained
320 public int constrains(GeneralNameInterface inputName) argument
323 if (inputName == null) {
325 } else if (inputName.getType() != NAME_URI) {
332 String otherHost = ((URIName)inputName).getHost();
338 Object otherHostObject = ((URIName)inputName).getHostObject();
H A DX500Name.java1251 * @param inputName to be checked for being constrained
1256 public int constrains(GeneralNameInterface inputName) argument
1259 if (inputName == null) {
1261 } else if (inputName.getType() != NAME_DIRECTORY) {
1264 X500Name inputX500 = (X500Name)inputName;
/openjdk7/jaxp/src/javax/xml/validation/
H A DSchemaFactoryFinder.java398 * @param inputName Name of <code>InputStream</code>.
407 String inputName,
416 debugPrintln("Reading " + inputName);
405 loadFromService( String schemaLanguage, String inputName, InputStream in) argument
/openjdk7/jaxp/src/javax/xml/xpath/
H A DXPathFactoryFinder.java358 * @param inputName Name of <code>InputStream</code>.
367 String inputName,
376 debugPrintln("Reading " + inputName);
365 loadFromService( String objectModel, String inputName, InputStream in) argument
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/ctx/
H A DPartialCompositeDirContext.java491 protected StringHeadTail c_parseComponent(String inputName, argument
H A DAtomicContext.java82 * Parse 'inputName' into two parts:
87 * which parses inputName using its own name syntax.
89 protected abstract StringHeadTail c_parseComponent(String inputName, argument

Completed in 60 milliseconds