Skip to content

Commit

Permalink
LPD-18300 Regen
Browse files Browse the repository at this point in the history
  • Loading branch information
brianchandotcom committed Mar 12, 2024
1 parent 711e1fd commit 677c02b
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 36 deletions.
29 changes: 14 additions & 15 deletions portal-kernel/src/com/liferay/portal/kernel/model/Portlet.java
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,13 @@ public void addSchedulerEntry(
*/
public java.util.Set<String> getAutopropagatedParameters();

/**
* Returns the category names of the portlet.
*
* @return the category names of the portlet
*/
public java.util.Set<String> getCategoryNames();

/**
* Returns <code>true</code> if the portlet is found in a WAR file.
*
Expand Down Expand Up @@ -324,13 +331,6 @@ public void addSchedulerEntry(
*/
public String getDefaultPreferences();

/**
* Returns the names of the category that display the portlet
*
* @return the names of the category that display the portlet
*/
public java.util.Set<String> getDisplayCategories();

/**
* Returns the display name of the portlet.
*
Expand Down Expand Up @@ -1685,6 +1685,13 @@ public void setAssetRendererFactoryClasses(
public void setAutopropagatedParameters(
java.util.Set<String> autopropagatedParameters);

/**
* Sets the category names of the portlet.
*
* @param categoryNames the category names of the portlet
*/
public void setCategoryNames(java.util.Set<String> categoryNames);

/**
* Sets the configuration action class of the portlet.
*
Expand Down Expand Up @@ -1754,14 +1761,6 @@ public void setCustomAttributesDisplayClasses(
*/
public void setDefaultPreferences(String defaultPreferences);

/**
* Sets the names of the category that display the portlet
*
* @param displayCategories the names of the category that display the
portlet
*/
public void setDisplayCategories(java.util.Set<String> displayCategories);

/**
* Sets the display name of the portlet.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,16 @@ public java.util.Set<String> getAutopropagatedParameters() {
return model.getAutopropagatedParameters();
}

/**
* Returns the category names of the portlet.
*
* @return the category names of the portlet
*/
@Override
public java.util.Set<String> getCategoryNames() {
return model.getCategoryNames();
}

/**
* Returns <code>true</code> if the portlet is found in a WAR file.
*
Expand Down Expand Up @@ -469,16 +479,6 @@ public String getDefaultPreferences() {
return model.getDefaultPreferences();
}

/**
* Returns the names of the category that display the portlet
*
* @return the names of the category that display the portlet
*/
@Override
public java.util.Set<String> getDisplayCategories() {
return model.getDisplayCategories();
}

/**
* Returns the display name of the portlet.
*
Expand Down Expand Up @@ -2458,6 +2458,16 @@ public void setAutopropagatedParameters(
model.setAutopropagatedParameters(autopropagatedParameters);
}

/**
* Sets the category names of the portlet.
*
* @param categoryNames the category names of the portlet
*/
@Override
public void setCategoryNames(java.util.Set<String> categoryNames) {
model.setCategoryNames(categoryNames);
}

/**
* Sets the company ID of this portlet.
*
Expand Down Expand Up @@ -2562,17 +2572,6 @@ public void setDefaultPreferences(String defaultPreferences) {
model.setDefaultPreferences(defaultPreferences);
}

/**
* Sets the names of the category that display the portlet
*
* @param displayCategories the names of the category that display the
portlet
*/
@Override
public void setDisplayCategories(java.util.Set<String> displayCategories) {
model.setDisplayCategories(displayCategories);
}

/**
* Sets the display name of the portlet.
*
Expand Down

0 comments on commit 677c02b

Please sign in to comment.