Package org.rhq.core.domain.bundle.BundleResourceDeploymentHistory

Examples of org.rhq.core.domain.bundle.BundleResourceDeploymentHistory.Status


            // see org.rhq.bundle.ant.task.AuditTask.execute()
            // RHQ_AUDIT_MESSAGE___<status>___<action>___<info>___<message>___<details>
            String[] eventStrings = event.getMessage().split("___");
            int index = 0;
            if (eventStrings[index++].equals("RHQ_AUDIT_MESSAGE")) {
                Status status = Status.SUCCESS;
                String action = "Audit Message";
                String info = "Recipe Audit Message";
                String message = new Date().toString();
                String details = null;
View Full Code Here

TOP

Related Classes of org.rhq.core.domain.bundle.BundleResourceDeploymentHistory.Status

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.