blob: 55c0441516c7c7a77d1837604e2e6cff8a48c382 [file] [log] [blame]
package com.atlassian.uwc.exporters.liferay.digester;
public class ManifestPortlet {
private String path = "path1";
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
@Override
public String toString() {
return "Portlet [path=" + path + "]";
}
}