Example usage for org.apache.commons.lang.builder ToStringStyle DEFAULT_STYLE

List of usage examples for org.apache.commons.lang.builder ToStringStyle DEFAULT_STYLE

Introduction

In this page you can find the example usage for org.apache.commons.lang.builder ToStringStyle DEFAULT_STYLE.

Prototype

ToStringStyle DEFAULT_STYLE

To view the source code for org.apache.commons.lang.builder ToStringStyle DEFAULT_STYLE.

Click Source Link

Document

The default toString style.

Usage

From source file:com.photon.phresco.commons.model.ArtifactInfo.java

@Override
public String toString() {
    return new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE).append(super.toString())
            .append("artifactGroupId", getArtifactGroupId()).append("version", getVersion())
            .append("isUsed", isUsed()).append("fileSize", getFileSize())
            .append("dependencies", getDependencyIds()).append("appliesTo", getAppliesTo())
            .append("downloadURL", getDownloadURL()).append("scope", getScope()).toString();
}

From source file:com.parleys.server.domain.AbstractEntity.java

public String toString() {
    ToStringBuilder sb = new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE).append("id", this.id);
    return sb.toString();
}

From source file:com.photon.phresco.commons.model.RepoInfo.java

public String toString() {
    return new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE).append("customerId", customerId)
            .append("repoURL", releaseRepoURL).append("repoUserName", repoUserName)
            .append("repoPassword", repoPassword).append("snapshotRepoURL", snapshotRepoURL)
            .append("groupRepoURL", groupRepoURL).toString();
}

From source file:com.sccl.attech.modules.mobile.entity.UpdateFile.java

/**
 * @see java.lang.Object#toString()//from   ww w.  jav  a  2  s  .  c o  m
 */
public String toString() {
    return new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE).append("name", this.name)
            .append("version", this.version).append("type", this.type).append("path", this.path)
            .append("url", this.url).toString();
}

From source file:com.photon.phresco.commons.model.ArtifactGroup.java

@Override
public String toString() {
    return new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE).append(super.toString())
            .append("groupId", getGroupId()).append("artifactId", getArtifactId())
            .append("packaging", getPackaging()).append("artifactInfos", getVersions())
            .append("type", getType()).append("imageURL", getImageURL()).append("appliesTo", getAppliesTo())
            .append("licenseId", getLicenseId()).toString();
}

From source file:com.photon.phresco.framework.model.AddCertificateInfo.java

public String toString() {
    return new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE).append(super.toString())
            .append("customerId", getCustomerId()).append("host", getHost()).append("port", getPort())
            .append("appDirName", getAppDirName()).append("certificateName", getCertificateName())
            .append("fromPage", getFromPage()).append("environmentName", getEnvironmentName())
            .append("configName", getConfigName()).append("propValue", getPropValue())
            .append("moduleName", getModuleName()).append("projectCode", getProjectCode()).toString();
}

From source file:com.photon.phresco.util.HubConfiguration.java

public String toString() {
    return new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE).append("host", getHost())
            .append("port", getPort()).append("newSessionWaitTimeout", getNewSessionWaitTimeout())
            .append("servlets", getServlets()).append("prioritizer", getPrioritizer())
            .append("capabilityMatcher", getCapabilityMatcher())
            .append("throwOnCapabilityNotPresent", isThrowOnCapabilityNotPresent())
            .append("nodePolling", getNodePolling()).append("cleanUpCycle", getCleanUpCycle())
            .append("timeout", getTimeout()).append("browserTimeout", getBrowserTimeout())
            .append("maxSession", getMaxSession()).toString();
}

From source file:com.photon.phresco.framework.commons.BasicParameterModel.java

public String toString() {
    return new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE).append("lableText", getLableText())
            .append("lableClass", getLableClass()).append("id", getId()).append("cssClass", getCssClass())
            .append("name", getName()).append("placeHolder", getPlaceHolder())
            .append("inputType", getInputType()).append("controlGroupId", getControlGroupId())
            .append("controlGroupClass", getControlGroupClass()).append("controlId", getControlId())
            .append("objectValue", getObjectValue()).append("mandatory", isMandatory()).toString();
}

From source file:com.photon.phresco.service.model.GroupRepository.java

public String toString() {
    return new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE)
            .append("contentResourceURI", contentResourceURI).append("id", id).append("name", name)
            .append("provider", provider).append("format", format).append("repoType", repoType)
            .append("exposed", exposed).toString();
}

From source file:com.sccl.attech.modules.sms.request.SmsRequest.java

/**
 * @see java.lang.Object#toString()/*  w  w  w  .j  ava  2s  .com*/
 */
public String toString() {
    return new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE).append("type", this.type)
            .append("content", this.content).append("mobiles", this.mobiles).append("requestId", this.requestId)
            .append("password", this.password).append("userName", this.userName).toString();
}