Java Code Examples for org.apache.commons.lang.builder.ReflectionToStringBuilder#toStringExclude()

The following examples show how to use org.apache.commons.lang.builder.ReflectionToStringBuilder#toStringExclude() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: PluginPackageRuntimeResourcesDocker.java    From wecube-platform with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return ReflectionToStringBuilder.toStringExclude(this, new String[]{"pluginPackage"});
}
 
Example 2
Source File: PluginConfigInterface.java    From wecube-platform with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return ReflectionToStringBuilder.toStringExclude(this, new String[] { "pluginConfig" });
}
 
Example 3
Source File: PluginPackageRuntimeResourcesS3.java    From wecube-platform with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return ReflectionToStringBuilder.toStringExclude(this, new String[]{"pluginPackage"});
}
 
Example 4
Source File: PluginPackageResourceFile.java    From wecube-platform with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return ReflectionToStringBuilder.toStringExclude(this, new String[]{"pluginPackage"});
}
 
Example 5
Source File: PluginConfig.java    From wecube-platform with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return ReflectionToStringBuilder.toStringExclude(this, new String[] { "pluginPackage", "interfaces" });
}
 
Example 6
Source File: PluginPackageRuntimeResourcesMysql.java    From wecube-platform with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return ReflectionToStringBuilder.toStringExclude(this, new String[]{"pluginPackage"});
}
 
Example 7
Source File: PluginPackageDependency.java    From wecube-platform with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return ReflectionToStringBuilder.toStringExclude(this, new String[]{"pluginPackage"});
}
 
Example 8
Source File: PluginConfigInterfaceParameter.java    From wecube-platform with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return ReflectionToStringBuilder.toStringExclude(this, "pluginConfigInterface");
}
 
Example 9
Source File: PluginPackageAttribute.java    From wecube-platform with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return ReflectionToStringBuilder.toStringExclude(this, new String[]{"pluginPackageEntity", "pluginPackageAttribute"});
}
 
Example 10
Source File: PluginPackageAuthority.java    From wecube-platform with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return ReflectionToStringBuilder.toStringExclude(this, new String[]{"pluginPackage"});
}
 
Example 11
Source File: PluginPackageMenu.java    From wecube-platform with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return ReflectionToStringBuilder.toStringExclude(this, new String[]{"pluginPackage"});
}
 
Example 12
Source File: ResourceServer.java    From wecube-platform with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return ReflectionToStringBuilder.toStringExclude(this, new String[] { "resourceItems" });
}
 
Example 13
Source File: ResourceItem.java    From wecube-platform with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return ReflectionToStringBuilder.toStringExclude(this, new String[] {"resourceServer"});
}
 
Example 14
Source File: ExecutionJobParameter.java    From wecube-platform with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return ReflectionToStringBuilder.toStringExclude(this, "pluginConfigInterface");
}