Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion component/api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.meeds.portal</groupId>
<artifactId>portal.component</artifactId>
<version>7.1.x-SNAPSHOT</version>
<version>7.1.x-meeds-qaui-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>portal.component.api</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,6 @@
* This Annotation Processor (see JSR 269) creates an index that contains the list of all
* the JPA entities annotated with @ExoEntity of the module.
* This index is stored in the file “exo-jpa-entities/entities.idx” of the generated jar.
*
* Created by The eXo Platform SAS
* Author : eXoPlatform exo@exoplatform.com
* 7/22/15
*/
@SupportedAnnotationTypes("org.exoplatform.commons.api.persistence.ExoEntity")
@SupportedSourceVersion(SourceVersion.RELEASE_21)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,7 @@
import java.io.Serializable;


/**
* Created by The eXo Platform SARL . Author : Tuan Nguyen tuan08@users.sourceforge.net Date: Jun 14, 2003 Time: 1:12:22 PM
*/

public class Query<T> implements Serializable {

private String ownerType_;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@
import org.exoplatform.portal.pom.data.BodyType;
import org.exoplatform.portal.pom.data.ModelData;

/**
* Created by The eXo Platform SAS Apr 25, 2007
*/
public class PageBody extends ModelObject {

public PageBody(BodyData bodyData) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@
import java.util.Map;


/**
* Created by The eXo Platform SARL Author : Nhu Dinh Thuan nhudinhthuan@exoplatform.com Jun 2, 2007
*/
@SuppressWarnings("serial")
public class Properties extends HashMap<String, String> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@
import java.util.List;
import java.util.StringTokenizer;

/**
* Created by The eXo Platform SARL Author : Nhu Dinh Thuan nhudinhthuan@exoplatform.com Jun 2, 2007
*/
public class JibxArraySerialize {

/**
Expand Down Expand Up @@ -60,7 +57,7 @@ public static String[] deserializeStringArray(String text) {
if (text.length() == 0) {
return new String[0];
} else {
List<String> list = new ArrayList<String>(5);
List<String> list = new ArrayList<>(5);
StringTokenizer st = new StringTokenizer(text, ";");
while (st.hasMoreTokens()) {
String token = st.nextToken().trim();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,7 @@
import org.jibx.runtime.impl.MarshallingContext;
import org.jibx.runtime.impl.UnmarshallingContext;

/**
* Created by The eXo Platform SARL Author : Nhu Dinh Thuan nhudinhthuan@exoplatform.com Jun 2, 2007
*/

public class JibxPropertiesMapper implements IMarshaller, IUnmarshaller, IAliasable {

private static final String SIZE_ATTRIBUTE_NAME = "size";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@
*/
package org.exoplatform.portal.config.serialize;

/**
* Created by The eXo Platform SAS Author : Vu Viet Phuong phuong_vu@exoplatform.com Sep 29, 2010
*/

public class JibxStringSerialize {
public static String deserializeString(String untrimmed) {
if (untrimmed == null) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,6 @@
import java.util.Collections;
import java.util.List;


/**
* Created by The eXo Platform SARL Author : Mestrallet Benjamin benjmestrallet@users.sourceforge.net Date: Jul 27, 2003 Time:
* 9:21:41 PM
*/
public class Preference {

private String name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@
*/
package org.exoplatform.services.resources;

/**
* Created by The eXo Platform SAS . Author : Tuan Nguyen tuan08@users.sourceforge.net Date: Jun 14, 2003 Time: 1:12:22 PM
*/
public class Query {

private String name_;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@
import java.util.regex.Pattern;


/**
* Created by The eXo Platform SAS . Author : Tuan Nguyen tuan08@users.sourceforge.net Date: May 14, 2004 Time: 1:12:22 PM
*/
@SuppressWarnings("serial")
public class ResourceBundleData extends ResourceBundleDescription implements Serializable {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@
import java.io.Serializable;


/**
* Created by The eXo Platform SAS . Author : Tuan Nguyen tuan08@users.sourceforge.net Date: May 14, 2004 Time: 1:12:22 PM
*/
@SuppressWarnings("serial")
public class ResourceBundleDescription implements Serializable {

Expand Down
2 changes: 1 addition & 1 deletion component/common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.meeds.portal</groupId>
<artifactId>portal.component</artifactId>
<version>7.1.x-SNAPSHOT</version>
<version>7.1.x-meeds-qaui-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>portal.component.common</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,6 @@
import java.util.List;
import java.util.Map;

/**
* Created by The eXo Platform SARL
* Author : Dang Van Minh
* minh.dang@exoplatform.com
* Nov 14, 2012
* 3:49:21 PM
*/
public class EventManagerImpl<S, D> extends ListenerService implements EventManager<S, D> {

private Map<String, List<ListenerBase<S, D>>> listenerMap = new HashMap<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,6 @@
import org.exoplatform.commons.api.event.EventListener;
import org.exoplatform.services.listener.Listener;

/**
* Created by The eXo Platform SARL
* Author : Dang Van Minh
* minh.dang@exoplatform.com
* Nov 21, 2012
* 1:45:40 PM
*/

/**
* An abstract listener to be extended by the dedicated listeners.
* @param <S> This is a generic object of source, it can be a File/Folder/Content or something else
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@
import java.io.InputStream;


/**
* Created by The eXo Platform SARL Author : Tuan Nguyen tuan08@users.sourceforge.net Dec 26, 2005
*/
public class ClasspathDownloadResource extends DownloadResource {

private String resource_;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@
import java.io.InputStream;


/**
* Created by The eXo Platform SARL Author : Tuan Nguyen tuan08@users.sourceforge.net Dec 26, 2005
*/
public abstract class DownloadResource {

private String downloadType_;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,6 @@
import java.util.HashMap;
import java.util.Map;

/**
* Created by The eXo Platform SARL
* Author : Tuan Nguyen
* tuan08@users.sourceforge.net
* Dec 26, 2005
*/
public class DownloadService {

private final ExoCache<String, DownloadResource> downloadResources_;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@
import java.io.InputStream;


/**
* Created by The eXo Platform SARL Author : Tuan Nguyen tuan08@users.sourceforge.net Dec 26, 2005
*/
public class FileDownloadResource extends DownloadResource {

private String path_;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,6 @@
import java.io.InputStream;

/**
* Created by The eXo Platform SARL
* Author : Tuan Nguyen
* tuan08@users.sourceforge.net
* Dec 26, 2005
*
* @deprecated It is better to avoid using this download resource
*/
public class InputStreamDownloadResource extends DownloadResource {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
*
* Hence every call to this ResourceResolver will in fact be delegated to one of the resolver it aggregates.
*
* Created by The eXo Platform SAS Oct 24, 2006
*/
public class ApplicationResourceResolver extends ResourceResolver {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@
import java.util.List;


/**
* Created by The eXo Platform SARL Author : Tuan Nguyen tuan08@users.sourceforge.net Mar 15, 2006
*/
public class ClasspathResourceResolver extends ResourceResolver {

public URL getResource(String url) throws Exception {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@
import java.util.List;


/**
* Created by The eXo Platform SARL Author : Tuan Nguyen tuan08@users.sourceforge.net Mar 15, 2006
*/
public class FileResourceResolver extends ResourceResolver {

static String FILE_PREFIX = "file:";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@
import org.exoplatform.services.log.ExoLogger;
import org.exoplatform.services.log.Log;

/**
* Created by The eXo Platform SAS Mar 15, 2006
*/
public class PortletResourceResolver extends ResourceResolver {

protected static Log log = ExoLogger.getLogger(PortletResourceResolver.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
* or override the createResourceKey method of abstract class ResourceResolver<br>
* and return the same ResourceKey for the same resource url<br>
* <br>
* Created by The eXo Platform SAS Mar 15, 2006
*/
public abstract class ResourceResolver {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@
import org.exoplatform.services.log.ExoLogger;
import org.exoplatform.services.log.Log;

/**
* Created by The eXo Platform SAS Mar 15, 2006
*/
public class ServletResourceResolver extends ResourceResolver {

protected static Log log = ExoLogger.getLogger("portal:ServletResourceResolver");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@
*/
package org.exoplatform.services.chars;

/**
* Created by The eXo Platform SARL Author : Nhu Dinh Thuan thuan.nhu@exoplatform.com Sep 13, 2006
*/
public final class CharsUtil {

public static int indexOf(char[] value, char[] c, int start) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,12 @@
import java.util.Set;

/**
* Created by The eXo Platform SAS Author : eXoPlatform bangnv@exoplatform.com
* Nov 15, 2012 CacheSettingServiceImpl is implemented for application which
* CacheSettingServiceImpl is implemented for application which
* uses cache. CacheSettingServiceImpl contains also settingService for
* database. In case of saving and removing setting properties,
* CacheSettingService will effect the change in cache and database. Otherwise,
* it will search setting properties in cache at first and then in database,
* that allows to improve performance.
*
* @LevelAPI Experimental
*/
public class CacheSettingServiceImpl implements SettingService {
/** Logger */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,9 @@
import org.exoplatform.services.cache.ObjectCacheInfo;

/**
* Created by The eXo Platform SAS
* Author : Nguyen Viet Bang
* bangnv@exoplatform.com
* Nov 27, 2012
* This class allows to select all setting cache objects which are in a specified Context or Scope.
* The callback function of this selector is to remove all selected setting object.
* @LevelAPI Experimental
*/

public class SettingCacheSelector implements CachedObjectSelector<SettingKey,Object>{
private SettingContext provider;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,6 @@
import static org.exoplatform.settings.jpa.EntityConverter.convertContextToContextEntity;
import static org.exoplatform.settings.jpa.EntityConverter.convertScopeToScopeEntity;

/**
* Created by The eXo Platform SAS Author : eXoPlatform exo@exoplatform.com Mar
* 07, 2017
*/
public class JPASettingServiceImpl implements SettingService {

private static final Log LOG = ExoLogger.getLogger(JPASettingServiceImpl.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,7 @@
import jakarta.persistence.TypedQuery;
import java.util.List;

/**
* Created by exo on 3/8/17.
*/

public class SettingsDAO extends GenericDAOJPAImpl<SettingsEntity, Long> implements org.exoplatform.settings.jpa.SettingsDAO {
private static final Log LOG = ExoLogger.getLogger(SettingsDAO.class);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,6 @@
import jakarta.persistence.SequenceGenerator;
import jakarta.persistence.Table;

/**
* Created by The eXo Platform SAS
* Author : eXoPlatform
* exo@exoplatform.com
* Mar 07, 2017
*/
@Entity(name = "SettingsContextEntity")
@Table(name = "STG_CONTEXTS")
@NamedQueries({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,6 @@
import jakarta.persistence.SequenceGenerator;
import jakarta.persistence.Table;

/**
* Created by The eXo Platform SAS
* Author : eXoPlatform
* exo@exoplatform.com
* Mar 07, 2017
*/
@Entity(name = "SettingsScopeEntity")
@Table(name = "STG_SCOPES")
@NamedQueries({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,6 @@
import jakarta.persistence.SequenceGenerator;
import jakarta.persistence.Table;

/**
* Created by The eXo Platform SAS
* Author : eXoPlatform
* exo@exoplatform.com
* Mar 07, 2017
*/
@Entity(name = "SettingsEntity")
@Table(name = "STG_SETTINGS")
@NamedQueries({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@
import org.exoplatform.services.log.ExoLogger;
import org.exoplatform.services.log.Log;

/**
* Created by The eXo Platform SAS Author : Nguyen Thanh Hai haint@exoplatform.com Jun 29, 2011
*/

public class MimeTypeUploadPlugin extends BaseComponentPlugin {
private static final Log log = ExoLogger.getLogger(MimeTypeUploadPlugin.class);
private static final String MIMETYPE_PATH = "mimetype-path";
Expand Down
Loading