public String toString()

in src/java/org/apache/fulcrum/yaafi/service/baseservice/BaseServiceImpl.java [153:203]


    public String toString()
    {
        StringBuilder result = new StringBuilder();

        result.append( getClass().getName() + "@" + Integer.toHexString(hashCode()));

        result.append("{");

        result.append("serviceName: ");
        result.append(this.getServiceName());
        result.append(";");

        result.append(" servicePartitionName: ");
        result.append(this.getServicePartitionName());
        result.append(";");

        result.append(" serviceApplicatonDir: ");
        result.append(this.getServiceApplicationDir().getAbsolutePath());
        result.append(";");

        result.append(" serviceTempDir: ");
        result.append(this.getServiceTempDir().getAbsolutePath());
        result.append(";");

        result.append(" serviceContext: ");
        result.append(this.getServiceContext().toString());
        result.append(";");

        result.append(" serviceConfiguration: ");
        result.append(this.getServiceConfiguration().toString());
        result.append(";");

        result.append(" serviceParameters: ");
        result.append(Parameters.toProperties(this.getServiceParameters()));
        result.append(";");

        result.append(" serviceClassLoader: ");
        result.append(this.getServiceClassLoader());
        result.append(";");

        result.append(" serviceLogger: ");
        result.append(this.getLogger());
        result.append(";");

        result.append(" serviceManager: ");
        result.append(this.getServiceManager());

        result.append("}");

        return result.toString();
    }