CPD Results

The following document contains the results of PMD's CPD 4.2.5.

Duplications

FileLine
com\trendmicro\grid\acl\ds\jpa\entities\JpaPackageFamily.java90
com\trendmicro\grid\acl\ds\jpa\entities\JpaVendor.java92
	}

	@Type(type = "nstring")
	@Column(name = "DISPLAY_NAME", length = MAX_DISPLAY_NAME_LENGTH, nullable = false)
	public String getDisplayName() {
		return displayName;
	}

	public void setDisplayName(String displayName) {
		this.displayName = displayName;
	}

	@Override
	@Type(type = "metadata")
	@Basic(fetch = FetchType.EAGER)
	@Column(name = "META_DATA", length = Limits.MAX_SERIALIZED_METADATA_LENGTH)
	public Metadata getMetadata() {
		return super.getMetadata();
	}

	@Override
	public void setMetadata(Metadata metadata) { //NOSONAR - Override is required as hook for JPA.
		super.setMetadata(metadata == null ? null : metadata.clone());
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public String toString() {
		return "JpaVendor{" +