Issue #440 more descriptive login failure message
Former-commit-id:391f8e4d58
[formerly6fc14461ee
] [formerly391f8e4d58
[formerly6fc14461ee
] [formerly74ce6f2140
[formerly 909362d88423e3c5a39c73b5e5da2d2168f5ed91]]] Former-commit-id:74ce6f2140
Former-commit-id:2d7e2b456e
[formerlyc345b2614e
] Former-commit-id:7a125d179c
This commit is contained in:
parent
900ad65c76
commit
60d8ddce72
16 changed files with 99 additions and 481 deletions
|
@ -209,13 +209,16 @@ public class CollaborationDataManager {
|
|||
user.type = Type.AVAILABLE;
|
||||
user.statusMessage = loginData.getModeMessage();
|
||||
} catch (Exception e) {
|
||||
statusHandler.handle(Priority.PROBLEM,
|
||||
e.getLocalizedMessage(), e);
|
||||
MessageBox box = new MessageBox(shell, SWT.ERROR);
|
||||
box.setText("Log On Failed");
|
||||
box.setMessage(e.getMessage());
|
||||
box.setText("Login Failed");
|
||||
if (e.getMessage() != null) {
|
||||
box.setMessage(e.getMessage());
|
||||
} else {
|
||||
box.setMessage("Login Failed.");
|
||||
}
|
||||
box.open();
|
||||
e.printStackTrace();
|
||||
// statusHandler.handle(Priority.WARN,
|
||||
// e.getLocalizedMessage(), e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -106,7 +106,7 @@ public class LoginDialog extends CaveSWTDialog {
|
|||
|
||||
public LoginDialog(Shell parentShell) {
|
||||
super(parentShell, SWT.DIALOG_TRIM);
|
||||
setText("Collaboration Server Log On");
|
||||
setText("Collaboration Server Login");
|
||||
}
|
||||
|
||||
private Control createDialogArea(Composite parent) {
|
||||
|
@ -223,7 +223,7 @@ public class LoginDialog extends CaveSWTDialog {
|
|||
gd = new GridData(SWT.CENTER, SWT.DEFAULT, true, false);
|
||||
bar.setLayout(new GridLayout(0, true));
|
||||
bar.setLayoutData(gd);
|
||||
logOnButton = createButton(bar, IDialogConstants.OK_ID, "Log On", true);
|
||||
logOnButton = createButton(bar, IDialogConstants.OK_ID, "Login", true);
|
||||
|
||||
createButton(bar, IDialogConstants.CANCEL_ID,
|
||||
IDialogConstants.CANCEL_LABEL, false);
|
||||
|
@ -359,7 +359,7 @@ public class LoginDialog extends CaveSWTDialog {
|
|||
}
|
||||
MessageBox messageBox = new MessageBox(event.widget
|
||||
.getDisplay().getActiveShell(), SWT.ERROR);
|
||||
messageBox.setText("Log On Error");
|
||||
messageBox.setText("Login Error");
|
||||
messageBox.setMessage(sb.toString());
|
||||
messageBox.open();
|
||||
event.doit = false;
|
||||
|
|
|
@ -117,7 +117,7 @@ public class SessionManager implements IEventPublisher {
|
|||
private IChatRoomInvitationListener intInvitationListener;
|
||||
|
||||
private IPresenceContainerAdapter presenceAdapter;
|
||||
|
||||
|
||||
private Namespace connectionNamespace = null;
|
||||
|
||||
private PeerToPeerChat chatInstance = null;
|
||||
|
@ -131,10 +131,12 @@ public class SessionManager implements IEventPublisher {
|
|||
private EventBus eventBus;
|
||||
|
||||
/**
|
||||
* @throws CollaborationException
|
||||
* @throws ContainerCreateException
|
||||
*
|
||||
*/
|
||||
public SessionManager(String account, String password) throws Exception {
|
||||
public SessionManager(String account, String password)
|
||||
throws CollaborationException {
|
||||
XMPPConnection.DEBUG_ENABLED = true;
|
||||
|
||||
try {
|
||||
|
@ -147,8 +149,9 @@ public class SessionManager implements IEventPublisher {
|
|||
this.password = password;
|
||||
try {
|
||||
connectToContainer();
|
||||
} catch (Exception e) {
|
||||
throw new Exception("Error creating SessionManager", e);
|
||||
} catch (ContainerConnectException e) {
|
||||
throw new CollaborationException(
|
||||
"Login failed. Invalid username or password", e);
|
||||
}
|
||||
setupAccountManager();
|
||||
|
||||
|
@ -182,27 +185,22 @@ public class SessionManager implements IEventPublisher {
|
|||
}
|
||||
|
||||
/**
|
||||
* @throws CollaborationException
|
||||
* @throws ContainerConnectException
|
||||
*
|
||||
*/
|
||||
private void connectToContainer() {
|
||||
private void connectToContainer() throws CollaborationException,
|
||||
ContainerConnectException {
|
||||
if (container.getConnectedID() == null) {
|
||||
connectionNamespace = container.getConnectNamespace();
|
||||
|
||||
// Now connect
|
||||
try {
|
||||
ID targetID = createID(account);
|
||||
container.connect(targetID, ConnectContextFactory
|
||||
.createPasswordConnectContext(password));
|
||||
ID targetID = createID(account);
|
||||
container.connect(targetID, ConnectContextFactory
|
||||
.createPasswordConnectContext(password));
|
||||
|
||||
presenceAdapter = Tools.getPresenceContainerAdapter(container,
|
||||
IPresenceContainerAdapter.class);
|
||||
} catch (ContainerConnectException e) {
|
||||
System.out.println("Error attempting to connect");
|
||||
e.printStackTrace();
|
||||
} catch (CollaborationException ce) {
|
||||
System.out.println("Error attempting to create identifier.");
|
||||
ce.printStackTrace();
|
||||
}
|
||||
presenceAdapter = Tools.getPresenceContainerAdapter(container,
|
||||
IPresenceContainerAdapter.class);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -480,69 +478,81 @@ public class SessionManager implements IEventPublisher {
|
|||
*/
|
||||
private void setupInternalConnectionListeners() {
|
||||
|
||||
presenceAdapter.getRosterManager().addPresenceListener(new IPresenceListener() {
|
||||
presenceAdapter.getRosterManager().addPresenceListener(
|
||||
new IPresenceListener() {
|
||||
|
||||
@Override
|
||||
public void handlePresence(ID fromId,
|
||||
org.eclipse.ecf.presence.IPresence presence) {
|
||||
System.out.println("Presence from " + fromId.getName());
|
||||
System.out.println(" type " + presence.getType());
|
||||
System.out.println(" mode " + presence.getMode());
|
||||
System.out.println(" status " + presence.getStatus());
|
||||
|
||||
IPresence p = Presence.convertPresence(presence);
|
||||
@Override
|
||||
public void handlePresence(ID fromId,
|
||||
org.eclipse.ecf.presence.IPresence presence) {
|
||||
System.out.println("Presence from " + fromId.getName());
|
||||
System.out.println(" type "
|
||||
+ presence.getType());
|
||||
System.out.println(" mode "
|
||||
+ presence.getMode());
|
||||
System.out.println(" status "
|
||||
+ presence.getStatus());
|
||||
|
||||
String name = Tools.parseName(fromId.getName());
|
||||
String host = Tools.parseHost(fromId.getName());
|
||||
String resource = Tools.parseResource(fromId.getName());
|
||||
|
||||
IChatID id = new RosterId(name, host, resource);
|
||||
|
||||
if(rosterManager != null) {
|
||||
((RosterManager) rosterManager).updateEntry(id, p);
|
||||
} else {
|
||||
// No rosterManager
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
presenceAdapter.getRosterManager().addRosterListener(new IRosterListener() {
|
||||
IPresence p = Presence.convertPresence(presence);
|
||||
|
||||
@Override
|
||||
public void handleRosterEntryAdd(IRosterEntry entry) {
|
||||
System.out.println("Roster add " + entry.getUser());
|
||||
System.out.println(" groups " + entry.getGroups());
|
||||
System.out.println(" name " + entry.getName());
|
||||
}
|
||||
String name = Tools.parseName(fromId.getName());
|
||||
String host = Tools.parseHost(fromId.getName());
|
||||
String resource = Tools.parseResource(fromId.getName());
|
||||
|
||||
@Override
|
||||
public void handleRosterUpdate(IRoster roster,
|
||||
IRosterItem changedValue) {
|
||||
|
||||
if(changedValue instanceof IRosterEntry) {
|
||||
IRosterEntry re = (IRosterEntry) changedValue;
|
||||
System.out.println("Roster update RosterEntry " + re.getUser());
|
||||
System.out.println(" groups " + re.getGroups());
|
||||
System.out.println(" name " + re.getName());
|
||||
} else if (changedValue instanceof IRosterGroup) {
|
||||
IRosterGroup rg = (IRosterGroup) changedValue;
|
||||
System.out.println("Roster update RosterGroup " + rg.getName());
|
||||
System.out.println(" entries " + rg.getEntries());
|
||||
System.out.println(" name " + rg.getName());
|
||||
} else if (changedValue instanceof IRoster) {
|
||||
IRoster r = (IRoster) changedValue;
|
||||
System.out.println("Roster update Roster " + r.getName());
|
||||
}
|
||||
}
|
||||
IChatID id = new RosterId(name, host, resource);
|
||||
|
||||
if (rosterManager != null) {
|
||||
((RosterManager) rosterManager).updateEntry(id, p);
|
||||
} else {
|
||||
// No rosterManager
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
presenceAdapter.getRosterManager().addRosterListener(
|
||||
new IRosterListener() {
|
||||
|
||||
@Override
|
||||
public void handleRosterEntryAdd(IRosterEntry entry) {
|
||||
System.out.println("Roster add " + entry.getUser());
|
||||
System.out.println(" groups "
|
||||
+ entry.getGroups());
|
||||
System.out.println(" name " + entry.getName());
|
||||
}
|
||||
|
||||
@Override
|
||||
public void handleRosterUpdate(IRoster roster,
|
||||
IRosterItem changedValue) {
|
||||
|
||||
if (changedValue instanceof IRosterEntry) {
|
||||
IRosterEntry re = (IRosterEntry) changedValue;
|
||||
System.out.println("Roster update RosterEntry "
|
||||
+ re.getUser());
|
||||
System.out.println(" groups "
|
||||
+ re.getGroups());
|
||||
System.out.println(" name " + re.getName());
|
||||
} else if (changedValue instanceof IRosterGroup) {
|
||||
IRosterGroup rg = (IRosterGroup) changedValue;
|
||||
System.out.println("Roster update RosterGroup "
|
||||
+ rg.getName());
|
||||
System.out.println(" entries "
|
||||
+ rg.getEntries());
|
||||
System.out.println(" name " + rg.getName());
|
||||
} else if (changedValue instanceof IRoster) {
|
||||
IRoster r = (IRoster) changedValue;
|
||||
System.out.println("Roster update Roster "
|
||||
+ r.getName());
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void handleRosterEntryRemove(IRosterEntry entry) {
|
||||
System.out.println("Roster " + entry.getUser());
|
||||
System.out.println(" groups "
|
||||
+ entry.getGroups());
|
||||
System.out.println(" name " + entry.getName());
|
||||
}
|
||||
});
|
||||
|
||||
@Override
|
||||
public void handleRosterEntryRemove(IRosterEntry entry) {
|
||||
System.out.println("Roster " + entry.getUser());
|
||||
System.out.println(" groups " + entry.getGroups());
|
||||
System.out.println(" name " + entry.getName());
|
||||
}
|
||||
});
|
||||
|
||||
if (container != null) {
|
||||
container.addListener(new IContainerListener() {
|
||||
|
||||
|
@ -639,7 +649,7 @@ public class SessionManager implements IEventPublisher {
|
|||
public EventBus getEventPublisher() {
|
||||
return eventBus;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
* @param name
|
||||
|
@ -651,11 +661,10 @@ public class SessionManager implements IEventPublisher {
|
|||
if (connectionNamespace != null) {
|
||||
id = IDFactory.getDefault().createID(connectionNamespace, name);
|
||||
}
|
||||
} catch(IDCreateException idce) {
|
||||
} catch (IDCreateException idce) {
|
||||
throw new CollaborationException("Could not create id");
|
||||
}
|
||||
return id;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
|
@ -1,9 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
|
||||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
|
||||
<classpathentry exported="true" kind="lib" path="smack.jar" sourcepath="org.jivesoftware.smacksrc.zip"/>
|
||||
<classpathentry exported="true" kind="lib" path="smackx.jar" sourcepath="org.jivesoftware.smacksrc.zip"/>
|
||||
<classpathentry exported="true" kind="lib" path="smackx-jingle.jar" sourcepath="org.jivesoftware.smacksrc.zip"/>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
</classpath>
|
|
@ -1,28 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>org.jivesoftware.smack</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.jdt.core.javabuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.pde.ManifestBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.pde.SchemaBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.pde.PluginNature</nature>
|
||||
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
|
@ -1,7 +0,0 @@
|
|||
#Thu Mar 26 11:27:57 CDT 2009
|
||||
eclipse.preferences.version=1
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
|
||||
org.eclipse.jdt.core.compiler.compliance=1.6
|
||||
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
|
||||
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
|
||||
org.eclipse.jdt.core.compiler.source=1.6
|
|
@ -1,54 +0,0 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Smack Plug-in
|
||||
Bundle-SymbolicName: org.jivesoftware.smack
|
||||
Bundle-Version: 3.0.0
|
||||
Bundle-ClassPath: smack.jar,
|
||||
smackx.jar,
|
||||
smackx-jingle.jar
|
||||
Export-Package: .,
|
||||
com.jcraft.jzlib,
|
||||
de.javawi.jstun,
|
||||
de.javawi.jstun.attribute,
|
||||
de.javawi.jstun.header,
|
||||
de.javawi.jstun.test,
|
||||
de.javawi.jstun.test.demo,
|
||||
de.javawi.jstun.test.demo.ice,
|
||||
de.javawi.jstun.util,
|
||||
org.jivesoftware.smack,
|
||||
org.jivesoftware.smack.debugger,
|
||||
org.jivesoftware.smack.filter,
|
||||
org.jivesoftware.smack.packet,
|
||||
org.jivesoftware.smack.provider,
|
||||
org.jivesoftware.smack.sasl,
|
||||
org.jivesoftware.smack.util,
|
||||
org.jivesoftware.smack.util.collections,
|
||||
org.jivesoftware.smackx,
|
||||
org.jivesoftware.smackx.bookmark,
|
||||
org.jivesoftware.smackx.filetransfer,
|
||||
org.jivesoftware.smackx.jingle,
|
||||
org.jivesoftware.smackx.jingle.listeners,
|
||||
org.jivesoftware.smackx.jingle.media,
|
||||
org.jivesoftware.smackx.jingle.mediaimpl,
|
||||
org.jivesoftware.smackx.jingle.mediaimpl.jmf,
|
||||
org.jivesoftware.smackx.jingle.mediaimpl.jspeex,
|
||||
org.jivesoftware.smackx.jingle.mediaimpl.multi,
|
||||
org.jivesoftware.smackx.jingle.nat,
|
||||
org.jivesoftware.smackx.muc,
|
||||
org.jivesoftware.smackx.packet,
|
||||
org.jivesoftware.smackx.provider,
|
||||
org.jivesoftware.smackx.search,
|
||||
org.jivesoftware.smackx.workgroup,
|
||||
org.jivesoftware.smackx.workgroup.agent,
|
||||
org.jivesoftware.smackx.workgroup.ext.forms,
|
||||
org.jivesoftware.smackx.workgroup.ext.history,
|
||||
org.jivesoftware.smackx.workgroup.ext.macros,
|
||||
org.jivesoftware.smackx.workgroup.ext.notes,
|
||||
org.jivesoftware.smackx.workgroup.packet,
|
||||
org.jivesoftware.smackx.workgroup.settings,
|
||||
org.jivesoftware.smackx.workgroup.user,
|
||||
org.jivesoftware.smackx.workgroup.util,
|
||||
org.xmlpull.mxp1,
|
||||
org.xmlpull.v1
|
||||
Bundle-Vendor: Raytheon-bundled OSS
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
|
|
@ -1,4 +0,0 @@
|
|||
bin.includes = META-INF/,\
|
||||
smack.jar,\
|
||||
smackx.jar,\
|
||||
smackx-jingle.jar
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,87 +0,0 @@
|
|||
## Core includes file generated on 2012-01-20 17:08:45 GMT
|
||||
com.raytheon.edex.rpgenvdata/component-deploy.xml
|
||||
com.raytheon.uf.common.jms/component-deploy.xml
|
||||
com.raytheon.uf.edex.database/component-deploy.xml
|
||||
com.raytheon.uf.common.cache/component-deploy.xml
|
||||
com.raytheon.uf.edex.pointdata/component-deploy.xml
|
||||
com.raytheon.uf.edex.esb.camel.launcher/component-deploy.xml
|
||||
com.raytheon.uf.common.dissemination/component-deploy.xml
|
||||
com.raytheon.uf.edex.bufrtools/component-deploy.xml
|
||||
com.raytheon.edex.uengine/component-deploy.xml
|
||||
com.raytheon.uf.common.pointdata/component-deploy.xml
|
||||
com.raytheon.uf.common.serialization/component-deploy.xml
|
||||
com.raytheon.uf.common.datastorage.remote/component-deploy.xml
|
||||
com.raytheon.uf.common.awipstools/component-deploy.xml
|
||||
com.raytheon.edex.ingestsrv/component-deploy.xml
|
||||
com.raytheon.uf.common.alertviz/component-deploy.xml
|
||||
com.raytheon.uf.common.serialization.comm/component-deploy.xml
|
||||
com.raytheon.uf.tools.gfesuite.servicebackup/component-deploy.xml
|
||||
com.raytheon.uf.common.auth/component-deploy.xml
|
||||
com.raytheon.uf.common.menus/component-deploy.xml
|
||||
com.raytheon.uf.edex.distribution/component-deploy.xml
|
||||
com.raytheon.uf.common.hydro/component-deploy.xml
|
||||
com.raytheon.uf.edex.core/component-deploy.xml
|
||||
com.raytheon.edex.common/component-deploy.xml
|
||||
com.raytheon.uf.edex.management/component-deploy.xml
|
||||
com.raytheon.uf.common.datastorage.hdf5/component-deploy.xml
|
||||
com.raytheon.uf.edex.cpgsrv/component-deploy.xml
|
||||
com.raytheon.uf.edex.python.decoder/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.uengine/component-deploy.xml
|
||||
com.raytheon.uf.common.status/component-deploy.xml
|
||||
com.raytheon.uf.common.sounding/component-deploy.xml
|
||||
com.raytheon.edex.autobldsrv/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.ingest.util/component-deploy.xml
|
||||
com.raytheon.uf.common.climo/component-deploy.xml
|
||||
com.raytheon.uf.common.localization/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common/component-deploy.xml
|
||||
com.raytheon.uf.common.message/component-deploy.xml
|
||||
com.raytheon.rcm.lib/component-deploy.xml
|
||||
com.raytheon.uf.common.datastorage/component-deploy.xml
|
||||
com.raytheon.uf.common.topo/component-deploy.xml
|
||||
com.raytheon.edex.notifysrv/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.gempak.jna/component-deploy.xml
|
||||
com.raytheon.edex.utilitysrv/component-deploy.xml
|
||||
com.raytheon.uf.common.geospatial/component-deploy.xml
|
||||
com.raytheon.uf.common.python/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.purgeutil/component-deploy.xml
|
||||
com.raytheon.uf.edex.metartohmdbsrv/component-deploy.xml
|
||||
com.raytheon.uf.common.time/component-deploy.xml
|
||||
com.raytheon.uf.common.pypies/component-deploy.xml
|
||||
com.raytheon.uf.common.monitor/component-deploy.xml
|
||||
com.raytheon.uf.common.comm/component-deploy.xml
|
||||
com.raytheon.edex.productsrv/component-deploy.xml
|
||||
com.raytheon.uf.common.mpe/component-deploy.xml
|
||||
com.raytheon.edex.adaptersrv/component-deploy.xml
|
||||
com.raytheon.uf.edex.textdbsrv/component-deploy.xml
|
||||
com.raytheon.uf.common.util/component-deploy.xml
|
||||
com.raytheon.uf.edex.dat.utils/component-deploy.xml
|
||||
com.raytheon.uf.common.ohd/component-deploy.xml
|
||||
com.raytheon.uf.common.site/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.ingest.grib.util/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.common/component-deploy.xml
|
||||
com.raytheon.uf.edex.log/component-deploy.xml
|
||||
com.raytheon.uf.edex.ohd/component-deploy.xml
|
||||
com.raytheon.uf.edex.awipstools/component-deploy.xml
|
||||
com.raytheon.uf.edex.esb.camel/component-deploy.xml
|
||||
com.raytheon.uf.common.dataquery/component-deploy.xml
|
||||
com.raytheon.uf.edex.decodertools/component-deploy.xml
|
||||
com.raytheon.uf.edex.topo/component-deploy.xml
|
||||
com.raytheon.uf.common.alertmonitor/component-deploy.xml
|
||||
com.raytheon.uf.common.activetable/component-deploy.xml
|
||||
com.raytheon.uf.edex.alertviz/component-deploy.xml
|
||||
com.raytheon.uf.common.management/component-deploy.xml
|
||||
com.raytheon.uf.common.derivparam/component-deploy.xml
|
||||
com.raytheon.uf.edex.dissemination/component-deploy.xml
|
||||
com.raytheon.edex.kml/component-deploy.xml
|
||||
com.raytheon.messaging.mhs/component-deploy.xml
|
||||
com.raytheon.uf.common.colormap/component-deploy.xml
|
||||
com.raytheon.uf.common.monitor.cpg/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.log/component-deploy.xml
|
||||
com.raytheon.edex.monitorsrv/component-deploy.xml
|
||||
com.raytheon.edex.textdb/component-deploy.xml
|
||||
com.raytheon.uf.edex.purgesrv/component-deploy.xml
|
||||
com.raytheon.uf.edex.auth/component-deploy.xml
|
||||
com.raytheon.uf.edex.site/component-deploy.xml
|
||||
com.raytheon.uf.edex.maintenance/component-deploy.xml
|
||||
com.raytheon.uf.edex.activetable/component-deploy.xml
|
||||
com.raytheon.uf.common.hlstopo/component-deploy.xml
|
|
@ -1,51 +0,0 @@
|
|||
## Cots includes file generated on 2012-01-20 17:08:45 GMT
|
||||
com.sun.jndi.nis/*.jar
|
||||
net.sf.ehcache/*.jar
|
||||
javax.persistence/*.jar
|
||||
org.eclipse.jetty/*.jar
|
||||
net.sf.cglib/*.jar
|
||||
org.apache.commons.logging/*.jar
|
||||
org.apache.commons.codec/*.jar
|
||||
org.apache.commons.lang/*.jar
|
||||
org.apache.commons.digester/*.jar
|
||||
org.dom4j/*.jar
|
||||
org.apache.tools.bzip2/*.jar
|
||||
org.slf4j/*.jar
|
||||
org.springframework/*.jar
|
||||
uk.ltd.getahead/*.jar
|
||||
org.objectweb/*.jar
|
||||
org.apache.activemq/*.jar
|
||||
org.apache.mina/*.jar
|
||||
org.postgres/postgis.jar
|
||||
org.postgres/postgresql-8.3-603.jdbc3.jar
|
||||
javax.vecmath/*.jar
|
||||
javax.mail/*.jar
|
||||
org.apache.commons.configuration/*.jar
|
||||
org.apache.commons.beanutils/*.jar
|
||||
com.facebook.thrift/*.jar
|
||||
org.apache.camel/*.jar
|
||||
org.apache.commons.pool/*.jar
|
||||
org.apache.log4j/*.jar
|
||||
org.jep/*.jar
|
||||
ncsa.hdf5/jhdf5.jar
|
||||
com.sun.jna/*.jar
|
||||
edu.wisc.ssec.mcidas/*.jar
|
||||
org.apache.commons.management/*.jar
|
||||
com.opensymphony.ognl/*.jar
|
||||
javax.jms/*.jar
|
||||
org.apache.commons.collections/*.jar
|
||||
org.jboss.cache/*.jar
|
||||
javax.measure/*.jar
|
||||
org.apache.http/*.jar
|
||||
org.apache.commons.cli/*.jar
|
||||
ucar.nc2/*.jar
|
||||
org.apache.tomcat.nativ/*.jar
|
||||
org.hibernate/*.jar
|
||||
org.apache.velocity/velocity-1.5.jar
|
||||
org.apache.velocity/velocity-tools-generic-1.3.jar
|
||||
org.apache.commons.validator/*.jar
|
||||
com.mchange/*.jar
|
||||
org.apache.qpid/*.jar
|
||||
org.geotools/*.jar
|
||||
javax.media.opengl/gluegen-rt.jar
|
||||
javax.activation/*.jar
|
|
@ -1,154 +0,0 @@
|
|||
## Plug-in includes file generated on 2012-01-20 17:08:45 GMT
|
||||
com.raytheon.uf.edex.plugin.satellite.mcidas/component-deploy.xml
|
||||
com.raytheon.edex.plugin.ldadhydro/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.loctables/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.intlsigmet/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.acars/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.npp.viirs/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.intlsigmet/component-deploy.xml
|
||||
com.raytheon.edex.plugin.ldadprofiler/component-deploy.xml
|
||||
com.raytheon.edex.plugin.binlightning/component-deploy.xml
|
||||
com.raytheon.edex.plugin.textlightning/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.svrwx/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.convsigmet/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.bufrsgwh/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.scd/component-deploy.xml
|
||||
com.raytheon.edex.plugin.shef/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.cwa/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.level/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.airmet/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.mesowest/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.ldadmesonet/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.gfe/component-deploy.xml
|
||||
com.raytheon.edex.plugin.radar/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.pafm/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.tcs/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.binlightning/component-deploy.xml
|
||||
com.raytheon.edex.plugin.airep/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.aww/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.airmet/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.bufrquikscat/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.preciprate/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.level.handler/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.bufrsigwx/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.ffmp/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.cwat/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.atcf/component-deploy.xml
|
||||
com.raytheon.edex.plugin.ldad/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.manualIngest/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.bufrsgwhv/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.ncccfp/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.radar/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.nctext/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.cwa/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.tcm/component-deploy.xml
|
||||
com.raytheon.edex.plugin.grib/component-deploy.xml
|
||||
com.raytheon.edex.plugin.warning/component-deploy.xml
|
||||
com.raytheon.edex.plugin.profiler/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.scan/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.aww/component-deploy.xml
|
||||
com.raytheon.edex.plugin.pirep/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.bufrua/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.obs/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.goessounding/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.bufrssmi/component-deploy.xml
|
||||
com.raytheon.edex.plugin.bufrua/component-deploy.xml
|
||||
com.raytheon.uf.common.plugin.nwsauth/component-deploy.xml
|
||||
com.raytheon.edex.plugin.goessounding/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.fog/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.wcp/component-deploy.xml
|
||||
com.raytheon.edex.plugin.sfcobs/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.bufrsgwh/component-deploy.xml
|
||||
com.raytheon.edex.plugin.poessounding/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.ncscat/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.warning/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.ffg/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.bufrhdw/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.bufrascat/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.shef/component-deploy.xml
|
||||
com.raytheon.edex.plugin.ccfp/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.bufrssha/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.ffg/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.vil/component-deploy.xml
|
||||
com.raytheon.edex.plugin.ldadmanual/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.bufrquikscat/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.nonconvsigmet/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.vil/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.tcg/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.lsr/component-deploy.xml
|
||||
com.raytheon.edex.plugin.redbook/component-deploy.xml
|
||||
com.raytheon.edex.plugin.obs/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.nwsauth/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.sfcobs/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.h5scd/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.tcs/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.ncccfp/component-deploy.xml
|
||||
com.raytheon.edex.plugin.bufrmos/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.ffmp/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.scan.common/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.mcidas/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.fssobs/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.profiler/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.text/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.ncgrib/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.satellite/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.mcidas/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.lsr/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.uair/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.cwat/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.idft/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.ldadhydro/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.grib/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.acars/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.scan/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.bufrncwf/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.pirep/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.convsigmet/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.fog/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.airep/component-deploy.xml
|
||||
com.raytheon.edex.plugin.modelsounding/component-deploy.xml
|
||||
com.raytheon.edex.plugin.taf/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.preciprate/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.npp.viirs/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.nonconvsigmet/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.idft/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.bufrascat/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.vaa/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.uair/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.atcf/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.svrwx/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.pafm/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.h5uair/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.qc/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.ncgrib/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.qpf/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.bufrhdw/component-deploy.xml
|
||||
com.raytheon.edex.plugin.gfe/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.qc/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.fssobs/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.bufrncwf/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.ncscat/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.level/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.bufrmthdw/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.acarssounding/component-deploy.xml
|
||||
com.raytheon.edex.plugin.text/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.tcg/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.qpf/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.mosaic/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.bufrsgwhv/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.bufrsigwx/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.ldadmesonet/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.bufrmthdw/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.acarssounding/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.tcm/component-deploy.xml
|
||||
com.raytheon.edex.plugin.satellite/component-deploy.xml
|
||||
com.raytheon.edex.plugin.recco/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.vaa/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.h5scd/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.scd/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.wcp/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.poessounding/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.bufrssha/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.bufrssmi/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.h5uair/component-deploy.xml
|
Binary file not shown.
Binary file not shown.
Loading…
Add table
Reference in a new issue