Searched refs:creation (Results 1 - 4 of 4) sorted by relevance

/glassfish-3.1.2/common/internal-api/src/main/java/org/glassfish/internal/embedded/
H A DEmbeddedLifecycle.java46 * Listener type contract to be notified of embedded server creation and
55 * Notification of embedded server creation
58 public void creation(Server server); method in interface:EmbeddedLifecycle
/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/resources/
H A DResourceAttributes.java97 public static final String ALTERNATE_CREATION_DATE = "creation-date";
252 protected long creation = -1; field in class:ResourceAttributes
382 * Get creation time.
384 * @return creation time value
387 if (creation != -1L)
388 return creation;
397 creation = ((Long) value).longValue();
399 creation = ((Date) value).getTime();
415 creation = result.getTime();
424 return creation;
433 setCreation(long creation) argument
[all...]
H A DFileDirContext.java699 * the mandatory attributes required for creation
1153 * Get creation time.
1155 * @return creation time value
1158 if (creation != -1L)
1159 return creation;
1160 creation = getLastModified();
1161 return creation;
1166 * Get creation date.
1171 if (creation == -1L) {
1172 creation
[all...]
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/common/
H A DEmbeddedSecurityLifeCycle.java81 public void creation(Server server) { method in class:EmbeddedSecurityLifeCycle

Completed in 21 milliseconds