|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Object
|
+--java.util.AbstractCollection
|
+--java.util.AbstractList
|
+--java.util.Vector
|
+--org.objectweb.jonas.server.JURLs
This implements an utility class that list the URLs of the jars to load at the launch time of the JOnAS server.
| Fields inherited from class java.util.Vector |
capacityIncrement, elementCount, elementData |
| Fields inherited from class java.util.AbstractList |
modCount |
| Constructor Summary | |
JURLs()
Construct an empty JURLs. |
|
| Method Summary | |
void |
add(java.io.File file)
Add the specified file or directory to this JURLs. |
void |
add(java.io.File file,
java.lang.String filter)
Add the content of the specified directory to this JURLs, by using the specified filter. |
void |
add(java.io.File file,
java.lang.String filter,
java.lang.String prefix,
java.lang.String suffix)
Add the content of the specified directory to this JURLs by using a file filter and if the contained file not starts with the prefix and not ends with the suffix. |
void |
addDir(java.io.File file)
Add the specified directory to this JURLs. |
void |
addNotEndWith(java.io.File file,
java.lang.String suffix)
Add the content of the specified directory to this JURLs if the contained file not ends with the specified suffix. |
void |
addNotStartWith(java.io.File file,
java.lang.String prefix)
Add the content of the specified directory to this JURLs if the contained file not starts with the specified prefix. |
void |
merge(JURLs jurl)
Merge the specified JURls to this JURLs. |
java.net.URL[] |
toURLs()
Return an array containing all the URLs of this JURLs. |
| Methods inherited from class java.util.Vector |
add, add, addAll, addAll, addElement, capacity, clear, clone, contains, containsAll, copyInto, elementAt, elements, ensureCapacity, equals, firstElement, get, hashCode, indexOf, indexOf, insertElementAt, isEmpty, lastElement, lastIndexOf, lastIndexOf, remove, remove, removeAll, removeAllElements, removeElement, removeElementAt, removeRange, retainAll, set, setElementAt, setSize, size, subList, toArray, toArray, toString, trimToSize |
| Methods inherited from class java.util.AbstractList |
iterator, listIterator, listIterator |
| Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface java.util.List |
iterator, listIterator, listIterator |
| Constructor Detail |
public JURLs()
| Method Detail |
public void add(java.io.File file)
throws java.net.MalformedURLException
file - the specified file or directory to add to this JURLs.java.net.MalformedURLException - to indicate that a malformed URL has
occured.
public void addDir(java.io.File file)
throws java.net.MalformedURLException
file - the directory to add to this JURLs.java.net.MalformedURLException - to indicate that a malformed URL has
occured.
public void add(java.io.File file,
java.lang.String filter)
throws java.net.MalformedURLException
file - the directory to add to this JURLs.filter - the filter to use to add the content of this directory,
null if not use the filter.java.net.MalformedURLException - to indicate that a malformed URL has
occured.
public void addNotStartWith(java.io.File file,
java.lang.String prefix)
throws java.net.MalformedURLException
file - the directory to add to this JURLs.prefix - the prefix to ignore, null if not use the prefix.java.net.MalformedURLException - to indicate that a malformed URL has
occured.
public void addNotEndWith(java.io.File file,
java.lang.String suffix)
throws java.net.MalformedURLException
file - the directory to add to this JURLs.suffix - the suffix to ignore, null if not use the suffix.java.net.MalformedURLException - to indicate that a malformed URL has
occured.
public void add(java.io.File file,
java.lang.String filter,
java.lang.String prefix,
java.lang.String suffix)
throws java.net.MalformedURLException
file - the directory to add to this JURLs.filter - the filter to use to add the content of this directory,
null if not use the filter.prefix - the prefix to ignore, null if not use the prefix.suffix - the suffix to ignore, null if not use the suffix.java.net.MalformedURLException - to indicate that a malformed URL has
occured.public void merge(JURLs jurl)
jurl - the JURls to merge with this JURLs.public java.net.URL[] toURLs()
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||