Skip to content

Commit

Permalink
LPS-99807 regen
Browse files Browse the repository at this point in the history
  • Loading branch information
brianchandotcom committed Aug 21, 2019
1 parent d83f929 commit d3c6a3a
Show file tree
Hide file tree
Showing 21 changed files with 184 additions and 7 deletions.
Expand Up @@ -3303,4 +3303,13 @@ public void setSessionFactory(SessionFactory sessionFactory) {
private static final Log _log = LogFactoryUtil.getLog(
KaleoActionPersistenceImpl.class);

static {
try {
Class.forName(KaleoPersistenceConstants.class.getName());
}
catch (ClassNotFoundException cnfe) {
throw new ExceptionInInitializerError(cnfe);
}
}

}
Expand Up @@ -2181,4 +2181,13 @@ public void setSessionFactory(SessionFactory sessionFactory) {
private static final Log _log = LogFactoryUtil.getLog(
KaleoConditionPersistenceImpl.class);

static {
try {
Class.forName(KaleoPersistenceConstants.class.getName());
}
catch (ClassNotFoundException cnfe) {
throw new ExceptionInInitializerError(cnfe);
}
}

}
Expand Up @@ -2991,4 +2991,13 @@ public void setSessionFactory(SessionFactory sessionFactory) {
private static final Set<String> _badColumnNames = SetUtil.fromArray(
new String[] {"active"});

static {
try {
Class.forName(KaleoPersistenceConstants.class.getName());
}
catch (ClassNotFoundException cnfe) {
throw new ExceptionInInitializerError(cnfe);
}
}

}
Expand Up @@ -2392,4 +2392,13 @@ public void setSessionFactory(SessionFactory sessionFactory) {
private static final Log _log = LogFactoryUtil.getLog(
KaleoDefinitionVersionPersistenceImpl.class);

static {
try {
Class.forName(KaleoPersistenceConstants.class.getName());
}
catch (ClassNotFoundException cnfe) {
throw new ExceptionInInitializerError(cnfe);
}
}

}
Expand Up @@ -4616,4 +4616,13 @@ private Long _getTime(Date date) {
private static final Log _log = LogFactoryUtil.getLog(
KaleoInstancePersistenceImpl.class);

static {
try {
Class.forName(KaleoPersistenceConstants.class.getName());
}
catch (ClassNotFoundException cnfe) {
throw new ExceptionInInitializerError(cnfe);
}
}

}
Expand Up @@ -3888,4 +3888,13 @@ private Long _getTime(Date date) {
private static final Log _log = LogFactoryUtil.getLog(
KaleoInstanceTokenPersistenceImpl.class);

static {
try {
Class.forName(KaleoPersistenceConstants.class.getName());
}
catch (ClassNotFoundException cnfe) {
throw new ExceptionInInitializerError(cnfe);
}
}

}
Expand Up @@ -4513,4 +4513,13 @@ public void setSessionFactory(SessionFactory sessionFactory) {
private static final Set<String> _badColumnNames = SetUtil.fromArray(
new String[] {"type", "comment"});

static {
try {
Class.forName(KaleoPersistenceConstants.class.getName());
}
catch (ClassNotFoundException cnfe) {
throw new ExceptionInInitializerError(cnfe);
}
}

}
Expand Up @@ -2521,4 +2521,13 @@ public void setSessionFactory(SessionFactory sessionFactory) {
private static final Set<String> _badColumnNames = SetUtil.fromArray(
new String[] {"type", "initial"});

static {
try {
Class.forName(KaleoPersistenceConstants.class.getName());
}
catch (ClassNotFoundException cnfe) {
throw new ExceptionInInitializerError(cnfe);
}
}

}
Expand Up @@ -3340,4 +3340,13 @@ public void setSessionFactory(SessionFactory sessionFactory) {
private static final Log _log = LogFactoryUtil.getLog(
KaleoNotificationPersistenceImpl.class);

static {
try {
Class.forName(KaleoPersistenceConstants.class.getName());
}
catch (ClassNotFoundException cnfe) {
throw new ExceptionInInitializerError(cnfe);
}
}

}
Expand Up @@ -2575,4 +2575,13 @@ public void setSessionFactory(SessionFactory sessionFactory) {
private static final Log _log = LogFactoryUtil.getLog(
KaleoNotificationRecipientPersistenceImpl.class);

static {
try {
Class.forName(KaleoPersistenceConstants.class.getName());
}
catch (ClassNotFoundException cnfe) {
throw new ExceptionInInitializerError(cnfe);
}
}

}
Expand Up @@ -5845,4 +5845,13 @@ public void setSessionFactory(SessionFactory sessionFactory) {
private static final Log _log = LogFactoryUtil.getLog(
KaleoTaskAssignmentInstancePersistenceImpl.class);

static {
try {
Class.forName(KaleoPersistenceConstants.class.getName());
}
catch (ClassNotFoundException cnfe) {
throw new ExceptionInInitializerError(cnfe);
}
}

}
Expand Up @@ -3361,4 +3361,13 @@ public void setSessionFactory(SessionFactory sessionFactory) {
private static final Log _log = LogFactoryUtil.getLog(
KaleoTaskAssignmentPersistenceImpl.class);

static {
try {
Class.forName(KaleoPersistenceConstants.class.getName());
}
catch (ClassNotFoundException cnfe) {
throw new ExceptionInInitializerError(cnfe);
}
}

}
Expand Up @@ -4008,4 +4008,13 @@ public void setSessionFactory(SessionFactory sessionFactory) {
private static final Log _log = LogFactoryUtil.getLog(
KaleoTaskFormInstancePersistenceImpl.class);

static {
try {
Class.forName(KaleoPersistenceConstants.class.getName());
}
catch (ClassNotFoundException cnfe) {
throw new ExceptionInInitializerError(cnfe);
}
}

}
Expand Up @@ -3371,4 +3371,13 @@ public void setSessionFactory(SessionFactory sessionFactory) {
private static final Log _log = LogFactoryUtil.getLog(
KaleoTaskFormPersistenceImpl.class);

static {
try {
Class.forName(KaleoPersistenceConstants.class.getName());
}
catch (ClassNotFoundException cnfe) {
throw new ExceptionInInitializerError(cnfe);
}
}

}
Expand Up @@ -67,4 +67,13 @@ public void setSessionFactory(SessionFactory sessionFactory) {
protected KaleoTaskInstanceTokenPersistence
kaleoTaskInstanceTokenPersistence;

static {
try {
Class.forName(KaleoPersistenceConstants.class.getName());
}
catch (ClassNotFoundException cnfe) {
throw new ExceptionInInitializerError(cnfe);
}
}

}
Expand Up @@ -3521,4 +3521,13 @@ public void setSessionFactory(SessionFactory sessionFactory) {
private static final Log _log = LogFactoryUtil.getLog(
KaleoTaskInstanceTokenPersistenceImpl.class);

static {
try {
Class.forName(KaleoPersistenceConstants.class.getName());
}
catch (ClassNotFoundException cnfe) {
throw new ExceptionInInitializerError(cnfe);
}
}

}
Expand Up @@ -2157,4 +2157,13 @@ public void setSessionFactory(SessionFactory sessionFactory) {
private static final Log _log = LogFactoryUtil.getLog(
KaleoTaskPersistenceImpl.class);

static {
try {
Class.forName(KaleoPersistenceConstants.class.getName());
}
catch (ClassNotFoundException cnfe) {
throw new ExceptionInInitializerError(cnfe);
}
}

}
Expand Up @@ -2992,4 +2992,13 @@ public void setSessionFactory(SessionFactory sessionFactory) {
private static final Log _log = LogFactoryUtil.getLog(
KaleoTimerInstanceTokenPersistenceImpl.class);

static {
try {
Class.forName(KaleoPersistenceConstants.class.getName());
}
catch (ClassNotFoundException cnfe) {
throw new ExceptionInInitializerError(cnfe);
}
}

}
Expand Up @@ -2109,4 +2109,13 @@ public void setSessionFactory(SessionFactory sessionFactory) {
private static final Log _log = LogFactoryUtil.getLog(
KaleoTimerPersistenceImpl.class);

static {
try {
Class.forName(KaleoPersistenceConstants.class.getName());
}
catch (ClassNotFoundException cnfe) {
throw new ExceptionInInitializerError(cnfe);
}
}

}
Expand Up @@ -3117,4 +3117,13 @@ public void setSessionFactory(SessionFactory sessionFactory) {
private static final Log _log = LogFactoryUtil.getLog(
KaleoTransitionPersistenceImpl.class);

static {
try {
Class.forName(KaleoPersistenceConstants.class.getName());
}
catch (ClassNotFoundException cnfe) {
throw new ExceptionInInitializerError(cnfe);
}
}

}
Expand Up @@ -17,16 +17,13 @@
import com.liferay.petra.string.StringBundler;

import org.osgi.framework.Bundle;
import org.osgi.framework.BundleContext;
import org.osgi.framework.Constants;
import org.osgi.service.component.annotations.Activate;
import org.osgi.service.component.annotations.Component;
import org.osgi.framework.FrameworkUtil;

/**
* @author Brian Wing Shun Chan
* @generated
*/
@Component(immediate = true, service = {})
public class KaleoPersistenceConstants {

public static final String BUNDLE_SYMBOLIC_NAME =
Expand All @@ -35,9 +32,9 @@ public class KaleoPersistenceConstants {
public static final String ORIGIN_BUNDLE_SYMBOLIC_NAME_FILTER =
"(origin.bundle.symbolic.name=" + BUNDLE_SYMBOLIC_NAME + ")";

@Activate
protected void activate(BundleContext bundleContext) {
Bundle bundle = bundleContext.getBundle();
static {
Bundle bundle = FrameworkUtil.getBundle(
KaleoPersistenceConstants.class);

if (!BUNDLE_SYMBOLIC_NAME.equals(bundle.getSymbolicName())) {
throw new IllegalStateException(
Expand Down

0 comments on commit d3c6a3a

Please sign in to comment.