/glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/ |
H A D | ActionReport.java | 88 public abstract MessagePart getTopMessagePart(); 144 public static class MessagePart { class in class:ActionReport 150 List<MessagePart> children = new ArrayList<MessagePart>(); 152 public MessagePart addChild() { 153 MessagePart newPart = new MessagePart(); 194 public List<MessagePart> getChildren() {
|
/glassfish-3.1.2/core/kernel/src/test/java/com/sun/enterprise/v3/common/ |
H A D | PlainTextActionReporterTest.java | 79 ActionReport.MessagePart top = report.getTopMessagePart(); 89 ActionReport.MessagePart top = report.getTopMessagePart(); 99 ActionReport.MessagePart top = report.getTopMessagePart(); 104 ActionReport.MessagePart childPart = top.addChild(); 109 ActionReport.MessagePart grandkids = childPart.addChild(); 120 ActionReport.MessagePart top = report.getTopMessagePart(); 125 ActionReport.MessagePart childPart = top.addChild(); 131 ActionReport.MessagePart grandkids = childPart.addChild();
|
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/admin/ |
H A D | ListModulesCommand.java | 76 ActionReport.MessagePart top = report.getTopMessagePart(); 81 ActionReport.MessagePart childPart = top.addChild(); 103 ActionReport.MessagePart provides = childPart.addChild(); 111 ActionReport.MessagePart imports = childPart.addChild(); 122 ActionReport.MessagePart implementations = childPart.addChild();
|
/glassfish-3.1.2/connectors/admin/src/main/java/org/glassfish/connectors/admin/cli/ |
H A D | ListConnectorSecurityMaps.java | 107 final ActionReport.MessagePart mp = report.getTopMessagePart(); 178 private void listSecurityMapNames(SecurityMap sm, ActionReport.MessagePart mp) { 179 final ActionReport.MessagePart part = mp.addChild(); 183 private void listSecurityMapDetails(SecurityMap sm, ActionReport.MessagePart mp) { 188 final ActionReport.MessagePart partSM = mp.addChild(); 191 final ActionReport.MessagePart partPG = partSM.addChild(); 202 final ActionReport.MessagePart partP = partPG.addChild(); 209 final ActionReport.MessagePart partG = partPG.addChild(); 215 final ActionReport.MessagePart partBP = partPG.addChild(); 219 final ActionReport.MessagePart partBP [all...] |
H A D | ListConnectorWorkSecurityMaps.java | 91 final ActionReport.MessagePart mp = report.getTopMessagePart(); 131 private void listWorkSecurityMap(WorkSecurityMap wsm, ActionReport.MessagePart mp) { 136 final ActionReport.MessagePart part = mp.addChild(); 144 final ActionReport.MessagePart part = mp.addChild();
|
H A D | ListResources.java | 84 ActionReport.MessagePart messagePart = report.getTopMessagePart(); 93 ActionReport.MessagePart messagePart = report.getTopMessagePart(); 104 ActionReport.MessagePart messagePart = report.getTopMessagePart(); 112 ActionReport.MessagePart messagePart = report.getTopMessagePart(); 118 private void generateResourcesList(ActionReport.MessagePart part, List<Resource> resources) { 168 ActionReport.MessagePart child = part.addChild();
|
H A D | ListResourceAdapterConfigs.java | 134 final ActionReport.MessagePart part = report.getTopMessagePart().addChild(); 137 final ActionReport.MessagePart propPart = part.addChild(); 143 final ActionReport.MessagePart part = report.getTopMessagePart().addChild();
|
/glassfish-3.1.2/load-balancer/admin/src/main/java/org/glassfish/loadbalancer/admin/cli/ |
H A D | ListLBConfigsCommand.java | 106 ActionReport.MessagePart part = report.getTopMessagePart(); 119 ActionReport.MessagePart childPart = part.addChild(); 130 ActionReport.MessagePart childPart = part.addChild(); 144 ActionReport.MessagePart childPart = part.addChild(); 161 ActionReport.MessagePart childPart = part.addChild(); 168 ActionReport.MessagePart childPart = part.addChild();
|
/glassfish-3.1.2/deployment/admin/src/main/java/org/glassfish/deployment/admin/ |
H A D | ListComponentsCommand.java | 113 ActionReport.MessagePart part = report.getTopMessagePart(); 173 ActionReport.MessagePart childPart = part.addChild(); 179 ActionReport.MessagePart childPart = part.addChild(); 303 private void displayAppScopedResources(String applicationName, ActionReport report, ActionReport.MessagePart part) { 319 ActionReport.MessagePart subPart = subReport.getTopMessagePart(); 320 for (ActionReport.MessagePart cp: subPart.getChildren()) { 321 ActionReport.MessagePart resourcesChildPart = part.addChild(); 328 ActionReport.MessagePart part) { 339 ActionReport.MessagePart subPart = subReport.getTopMessagePart(); 340 for (ActionReport.MessagePart childPar [all...] |
H A D | DeployDirCommand.java | 78 ActionReport.MessagePart msgPart = report.getTopMessagePart(); 80 ActionReport.MessagePart childPart = msgPart.addChild();
|
H A D | GetTargetsCommand.java | 74 ActionReport.MessagePart part = report.getTopMessagePart(); 86 ActionReport.MessagePart childPart = part.addChild();
|
/glassfish-3.1.2/jdbc/admin/src/test/java/org/glassfish/jdbc/admin/cli/ |
H A D | ListJdbcResourcesTest.java | 62 import org.glassfish.api.ActionReport.MessagePart; 130 List<MessagePart> list = context.getActionReport().getTopMessagePart().getChildren(); 156 List<MessagePart> list = context.getActionReport().getTopMessagePart().getChildren(); 199 List<MessagePart> list = context.getActionReport().getTopMessagePart().getChildren(); 204 for (MessagePart mp : list) { 248 List<MessagePart> list = context.getActionReport().getTopMessagePart().getChildren(); 253 for (MessagePart mp : list) { 283 //List<MessagePart> list = context.getActionReport().getTopMessagePart().getChildren(); 307 List<MessagePart> list = context.getActionReport().getTopMessagePart().getChildren(); 310 for (MessagePart m [all...] |
/glassfish-3.1.2/web/gui-plugin-common/src/main/java/org/glassfish/web/plugin/common/ |
H A D | ListWebContextParamCommand.java | 73 ActionReport.MessagePart part = report.getTopMessagePart(); 78 ActionReport.MessagePart childPart = part.addChild();
|
H A D | ListWebEnvEntryCommand.java | 74 ActionReport.MessagePart part = report.getTopMessagePart(); 79 ActionReport.MessagePart childPart = part.addChild();
|
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/cli/ |
H A D | PredefinedAuthRealmClassNamesCommand.java | 73 ActionReport.MessagePart part = report.getTopMessagePart(); 77 ActionReport.MessagePart childPart = part.addChild();
|
/glassfish-3.1.2/jbi/serviceengine/sun-javaee-engine/src/main/java/com/sun/enterprise/jbi/serviceengine/util/ |
H A D | LocalDeploymentFacility.java | 53 import org.glassfish.api.ActionReport.MessagePart; 182 final MessagePart topMessagePart = report.getTopMessagePart(); 188 for (final MessagePart messagePart : topMessagePart.getChildren()) { 198 * @param messagePart action report's MessagePart (from any level) 201 private static DFDeploymentStatus messagePartToStatus(MessagePart messagePart) { 204 for (final MessagePart child : messagePart.getChildren()) {
|
/glassfish-3.1.2/orb/orb-connector/src/test/java/org/glassfish/orb/admin/cli/ |
H A D | ListIiopListenersTest.java | 48 import org.glassfish.api.ActionReport.MessagePart; 104 List<MessagePart> list = context.getActionReport().getTopMessagePart().getChildren(); 118 List<MessagePart> list = context.getActionReport().getTopMessagePart().getChildren(); 140 List<MessagePart> list = context.getActionReport().getTopMessagePart().getChildren(); 143 for (MessagePart mp : list) { 164 List<MessagePart> list = context.getActionReport().getTopMessagePart().getChildren(); 167 for (MessagePart mp : list) {
|
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/common/ |
H A D | PlainTextActionReporter.java | 162 private boolean superSimple(MessagePart part) { 165 List<MessagePart> list = part.getChildren(); 200 private void write(String indent, MessagePart part, StringBuilder out) { 204 for (MessagePart child :
|
H A D | XMLContentActionReporter.java | 133 private void writePart(Element actionReport, MessagePart part, 150 for (MessagePart subPart : part.getChildren()) 159 private void writeSubPart(Element actionReport, MessagePart part, 169 for (MessagePart subPart : part.getChildren())
|
H A D | HTMLActionReporter.java | 89 private void write(int level, MessagePart part, PrintWriter writer) { 101 for (MessagePart child : part.getChildren()) {
|
/glassfish-3.1.2/connectors/admin/src/test/java/org/glassfish/connectors/admin/cli/ |
H A D | ListCustomResourcesTest.java | 50 import org.glassfish.api.ActionReport.MessagePart; 109 List<MessagePart> list = context.getActionReport().getTopMessagePart().getChildren(); 139 List<MessagePart> list = context.getActionReport().getTopMessagePart().getChildren(); 142 for (MessagePart mp : list) { 167 List<MessagePart> list = context.getActionReport().getTopMessagePart().getChildren(); 174 for (MessagePart mp : list) {
|
H A D | ListJavaMailResourcesTest.java | 51 import org.glassfish.api.ActionReport.MessagePart; 111 List<MessagePart> list = context.getActionReport().getTopMessagePart().getChildren(); 142 List<MessagePart> list = context.getActionReport().getTopMessagePart().getChildren(); 145 for (MessagePart mp : list) { 169 List<MessagePart> list = context.getActionReport().getTopMessagePart().getChildren(); 172 for (MessagePart mp : list) {
|
H A D | ListJndiResourcesTest.java | 109 List<ActionReport.MessagePart> list = context.getActionReport().getTopMessagePart().getChildren(); 136 List<ActionReport.MessagePart> list = context.getActionReport().getTopMessagePart().getChildren(); 139 for (ActionReport.MessagePart mp : list) { 160 List<ActionReport.MessagePart> list = context.getActionReport().getTopMessagePart().getChildren(); 167 for (ActionReport.MessagePart mp : list) {
|
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/provider/ |
H A D | ActionReportResultJsonProvider.java | 48 import org.glassfish.api.ActionReport.MessagePart; 109 List<MessagePart> children = ar.getTopMessagePart().getChildren(); 122 protected JSONArray processChildren(List<MessagePart> parts) throws JSONException { 125 for (MessagePart part : parts) { 129 List<MessagePart> children = part.getChildren();
|
H A D | ActionReportResultXmlProvider.java | 48 import org.glassfish.api.ActionReport.MessagePart; 89 List<MessagePart> children = ar.getTopMessagePart().getChildren(); 102 protected XmlArray processChildren(List<MessagePart> parts) { 105 for (MessagePart part : parts) { 109 List<MessagePart> children = part.getChildren();
|