com.foreach.imageserver.dto.ImageProfileDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of imageserver-client Show documentation
Show all versions of imageserver-client Show documentation
ImageServer application modules.
package com.foreach.imageserver.dto;
public class ImageProfileDto extends IdBasedEntityDto
{
private String name;
public String getName() {
return name;
}
public void setName( String name ) {
this.name = name;
}
}