Author: pcraveiro
Date: 2012-03-04 09:02:55 -0500 (Sun, 04 Mar 2012)
New Revision: 1484
Modified:
console/trunk/gui/src/main/java/org/picketlink/console/client/widgets/common/MainPanelWidget.java
console/trunk/gui/src/main/java/org/picketlink/console/client/widgets/common/MenuTreeWidget.java
console/trunk/gui/src/main/java/org/picketlink/console/server/config/GuiceServletConfig.java
console/trunk/gui/src/main/java/org/picketlink/console/server/guice/DispatchServletModule.java
console/trunk/gui/src/main/java/org/picketlink/console/server/guice/ServerModule.java
console/trunk/gui/src/main/java/org/picketlink/console/server/guice/ServletModule.java
Log:
Modified:
console/trunk/gui/src/main/java/org/picketlink/console/client/widgets/common/MainPanelWidget.java
===================================================================
---
console/trunk/gui/src/main/java/org/picketlink/console/client/widgets/common/MainPanelWidget.java 2012-03-04
14:02:23 UTC (rev 1483)
+++
console/trunk/gui/src/main/java/org/picketlink/console/client/widgets/common/MainPanelWidget.java 2012-03-04
14:02:55 UTC (rev 1484)
@@ -1,6 +1,26 @@
+/*
+* JBoss, Home of Professional Open Source.
+* Copyright 2006, Red Hat Middleware LLC, and individual contributors
+* as indicated by the @author tags. See the copyright.txt file in the
+* distribution for a full listing of individual contributors.
+*
+* This is free software; you can redistribute it and/or modify it
+* under the terms of the GNU Lesser General Public License as
+* published by the Free Software Foundation; either version 2.1 of
+* the License, or (at your option) any later version.
+*
+* This software is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this software; if not, write to the Free
+* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+* 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
+*/
package org.picketlink.console.client.widgets.common;
-
import org.picketlink.console.client.core.security.SecurityManager;
import org.picketlink.console.client.resources.ImageFactory;
@@ -19,6 +39,10 @@
import com.google.gwt.user.client.ui.StackLayoutPanel;
import com.google.gwt.user.client.ui.VerticalPanel;
+/**
+ * @author Pedro Silva
+ * @since 03/01/2011
+ */
public class MainPanelWidget extends DockLayoutPanel {
private Panel contentPanel = new DecoratorPanel();
Modified:
console/trunk/gui/src/main/java/org/picketlink/console/client/widgets/common/MenuTreeWidget.java
===================================================================
---
console/trunk/gui/src/main/java/org/picketlink/console/client/widgets/common/MenuTreeWidget.java 2012-03-04
14:02:23 UTC (rev 1483)
+++
console/trunk/gui/src/main/java/org/picketlink/console/client/widgets/common/MenuTreeWidget.java 2012-03-04
14:02:55 UTC (rev 1484)
@@ -1,3 +1,24 @@
+/*
+* JBoss, Home of Professional Open Source.
+* Copyright 2006, Red Hat Middleware LLC, and individual contributors
+* as indicated by the @author tags. See the copyright.txt file in the
+* distribution for a full listing of individual contributors.
+*
+* This is free software; you can redistribute it and/or modify it
+* under the terms of the GNU Lesser General Public License as
+* published by the Free Software Foundation; either version 2.1 of
+* the License, or (at your option) any later version.
+*
+* This software is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this software; if not, write to the Free
+* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+* 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
+*/
package org.picketlink.console.client.widgets.common;
import com.google.gwt.event.dom.client.ClickEvent;
@@ -7,6 +28,10 @@
import com.google.gwt.user.client.ui.Tree;
import com.google.gwt.user.client.ui.TreeItem;
+/**
+ * @author Pedro Silva
+ * @since 03/01/2011
+ */
public class MenuTreeWidget extends Tree {
private final Panel contentPanel;
Modified:
console/trunk/gui/src/main/java/org/picketlink/console/server/config/GuiceServletConfig.java
===================================================================
---
console/trunk/gui/src/main/java/org/picketlink/console/server/config/GuiceServletConfig.java 2012-03-04
14:02:23 UTC (rev 1483)
+++
console/trunk/gui/src/main/java/org/picketlink/console/server/config/GuiceServletConfig.java 2012-03-04
14:02:55 UTC (rev 1484)
@@ -1,3 +1,24 @@
+/*
+* JBoss, Home of Professional Open Source.
+* Copyright 2006, Red Hat Middleware LLC, and individual contributors
+* as indicated by the @author tags. See the copyright.txt file in the
+* distribution for a full listing of individual contributors.
+*
+* This is free software; you can redistribute it and/or modify it
+* under the terms of the GNU Lesser General Public License as
+* published by the Free Software Foundation; either version 2.1 of
+* the License, or (at your option) any later version.
+*
+* This software is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this software; if not, write to the Free
+* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+* 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
+*/
package org.picketlink.console.server.config;
import javax.servlet.ServletContextEvent;
@@ -11,6 +32,10 @@
import com.google.inject.persist.jpa.JpaPersistModule;
import com.google.inject.servlet.GuiceServletContextListener;
+/**
+ * @author Pedro Silva
+ * @since 03/01/2011
+ */
public class GuiceServletConfig extends GuiceServletContextListener {
/*
Modified:
console/trunk/gui/src/main/java/org/picketlink/console/server/guice/DispatchServletModule.java
===================================================================
---
console/trunk/gui/src/main/java/org/picketlink/console/server/guice/DispatchServletModule.java 2012-03-04
14:02:23 UTC (rev 1483)
+++
console/trunk/gui/src/main/java/org/picketlink/console/server/guice/DispatchServletModule.java 2012-03-04
14:02:55 UTC (rev 1484)
@@ -1,3 +1,24 @@
+/*
+* JBoss, Home of Professional Open Source.
+* Copyright 2006, Red Hat Middleware LLC, and individual contributors
+* as indicated by the @author tags. See the copyright.txt file in the
+* distribution for a full listing of individual contributors.
+*
+* This is free software; you can redistribute it and/or modify it
+* under the terms of the GNU Lesser General Public License as
+* published by the Free Software Foundation; either version 2.1 of
+* the License, or (at your option) any later version.
+*
+* This software is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this software; if not, write to the Free
+* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+* 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
+*/
package org.picketlink.console.server.guice;
import com.google.inject.servlet.ServletModule;
@@ -4,6 +25,10 @@
import com.gwtplatform.dispatch.server.guice.DispatchServiceImpl;
import com.gwtplatform.dispatch.shared.ActionImpl;
+/**
+ * @author Pedro Silva
+ * @since 03/01/2011
+ */
public class DispatchServletModule extends ServletModule {
@Override
Modified:
console/trunk/gui/src/main/java/org/picketlink/console/server/guice/ServerModule.java
===================================================================
---
console/trunk/gui/src/main/java/org/picketlink/console/server/guice/ServerModule.java 2012-03-04
14:02:23 UTC (rev 1483)
+++
console/trunk/gui/src/main/java/org/picketlink/console/server/guice/ServerModule.java 2012-03-04
14:02:55 UTC (rev 1484)
@@ -1,3 +1,24 @@
+/*
+* JBoss, Home of Professional Open Source.
+* Copyright 2006, Red Hat Middleware LLC, and individual contributors
+* as indicated by the @author tags. See the copyright.txt file in the
+* distribution for a full listing of individual contributors.
+*
+* This is free software; you can redistribute it and/or modify it
+* under the terms of the GNU Lesser General Public License as
+* published by the Free Software Foundation; either version 2.1 of
+* the License, or (at your option) any later version.
+*
+* This software is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this software; if not, write to the Free
+* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+* 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
+*/
package org.picketlink.console.server.guice;
import com.gwtplatform.dispatch.server.guice.HandlerModule;
@@ -2,2 +23,6 @@
+/**
+ * @author Pedro Silva
+ * @since 03/01/2011
+ */
public class ServerModule extends HandlerModule {
Modified:
console/trunk/gui/src/main/java/org/picketlink/console/server/guice/ServletModule.java
===================================================================
---
console/trunk/gui/src/main/java/org/picketlink/console/server/guice/ServletModule.java 2012-03-04
14:02:23 UTC (rev 1483)
+++
console/trunk/gui/src/main/java/org/picketlink/console/server/guice/ServletModule.java 2012-03-04
14:02:55 UTC (rev 1484)
@@ -1,3 +1,24 @@
+/*
+* JBoss, Home of Professional Open Source.
+* Copyright 2006, Red Hat Middleware LLC, and individual contributors
+* as indicated by the @author tags. See the copyright.txt file in the
+* distribution for a full listing of individual contributors.
+*
+* This is free software; you can redistribute it and/or modify it
+* under the terms of the GNU Lesser General Public License as
+* published by the Free Software Foundation; either version 2.1 of
+* the License, or (at your option) any later version.
+*
+* This software is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this software; if not, write to the Free
+* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+* 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
+*/
package org.picketlink.console.server.guice;
import com.google.inject.persist.PersistFilter;
@@ -2,2 +23,6 @@
+/**
+ * @author Pedro Silva
+ * @since 03/01/2011
+ */
public class ServletModule extends com.google.inject.servlet.ServletModule {