Tagged Questions
1
vote
1answer
52 views
limit access to servlets
I have a gateway sevlet that forward users to many servlets that processes tasks.
each users must go first through the gateway servlet then it forwards them to the proper servlet.
I create a ...
2
votes
1answer
313 views
Restrict a user from accessing folder in Java EE app
How can I hide files on my web server? I have a directory 'files' in which I am storing some pdf files. I don't want to let the user access files by a URL like this:
www.example.com/files/1.pdf
...
0
votes
0answers
135 views
Using Java SecurityManager, Policy to deny access to certain resources for certain classes
I have the following problem:
I have a web application and there are several classes that receive and/or meddle with user input (uploading/downloading files etc.).
Well, while building some class ...
1
vote
1answer
241 views
Tomcat configuration - multiple hosts
I have three web services (WAR files_ from a third party supplier which are hosted in Tomcat. Each web service will have a different URL (e.g. website1.com, website2.com, website3.com) and from the ...
1
vote
1answer
55 views
Class Restriction in Eclipse
I was trying Google App Engine to build a sample application using Eclipse plugin. I tried creating a HttsURLConnection class in my code, and the editor showed a RED mark complaining ...
4
votes
3answers
148 views
Regex: Match permutations with repetitive chars whereby one char can not occur more than once
The regex should match all strings, which are between 2 and 3 chars long and contain only A and B ([AB]{2,3}). But also it should just match strings, which contain a maximum of one B.
Allowed ...
1
vote
0answers
45 views
Restrict opening of all tabs in blackberry application
I have 3 tabs in my application form which are opened when a button from previous form is clicked.
The below image shows the 3 tabs when opened.
As seen, when the search button from first tab is ...
0
votes
3answers
163 views
Restricting Java Compiler API
I'm thinking of creating an in-game code IDE that uses a more restricted version of Java, for instance I do not want it to use the I/O stream APIs. Is this even possible?
Also, inb4 this. It still ...
4
votes
2answers
6k views
How to allow introducing only digits in jTextField? [duplicate]
Possible Duplicate:
How to implement in Java ( JTextField class ) to allow entering only digits?
I have tried to use the example shown here but java showing error message of "AttributeSet ...
0
votes
1answer
148 views
Is this a violation of EJB restrictions?
I've read the the restrictions for EJBs and several answers here on stackoverflow but I'm not quite sure about a snippet of code, which I found at work.
There's a service which provides detailed ...
0
votes
1answer
519 views
Hibernate Restrictions: Object betweeen two DB.table.propertyName
This is the normal use of Hibernate's between constraint
Criterion critDate = Restrictions.between("fromDatePropName", model.getFromDate(), model.getToDate()) ;
But I want the constraint between ...
6
votes
4answers
5k views
Generic Restriction Hell: Bound Mismatch
I'm working on a project that has an extensive tree of generic inheritance and dependencies. Go to edit to see better example. The basics look something like this:
class A {
...
}
class B {
...
...
5
votes
3answers
419 views
Which Java xml framework can handle code generation with restrictions/extensions in schemas?
Greetings,
There is a set of XSD files, with the following types described in them:
A is a complex type with various elements.
B restricts A, keeping only some of its elements
C extends B, adding ...
0
votes
1answer
628 views
Hibernate Criteria, Joins, Or
I'm trying to accomplish ad-hoc queries using joined tables, using an Restrictions.or and Restrictions.ilike
My entities look like:
@Entity
@Table(name="CASE_REVIEW")
public class CaseReview {
...
0
votes
2answers
202 views
Java Applet CPU restrictions?
Is there some type of cap as to how much CPU an applet can use? Or will my code run just as fast as a standard java program?
1
vote
4answers
882 views
Hibernate entity with restriction
We have a DB table that is mapped into a hibernate entity. So far everything goes well...
However what we want is to only map enentitys that satisty a specific criteria, like ' ...
4
votes
3answers
11k views
Eclipse 3.5.1 Compiler Error :The type OutputFormat is not accessible due to restriction on required library ../rt.jar
This error is weird and i cannot make much sense of it. I've installed EclipseRCP 3.5.1,
Java SE 1.6 update 16 and switched to SWT 3.5. I've created a new project, set up the dependencies and tried to ...
4
votes
4answers
852 views
Limitations of Java desktop applications?
I come from a C/C++ background and now do a lot of C# stuff.
Lately I have become interested in doing some projects in Java since playing around with the Android SDK.
I know that Java apps run in a ...
45
votes
12answers
73k views
What does the 'static' keyword do in a class?
To be specific, I was trying this code:
package hello;
public class Hello {
Clock clock = new Clock();
public static void main(String args[]) {
clock.sayTime();
}
}
But it ...