husted 2004/05/31 17:48:05
Added:
chain/apps/mailreader/src/java/org/apache/commons/chain/mailreader/commands
ProfileCheck.java Profile.java
Log:
Add ProfileCheck and Profile classes.
Revision Changes Path
1.1
jakarta-commons-sandbox/chain/apps/mailreader/src/java/org/apache/commons/chain/mailreader/commands/ProfileCheck.java
Index: ProfileCheck.java
===================================================================
/*
* $Header:
/home/cvs/jakarta-commons-sandbox/chain/apps/mailreader/src/java/org/apache/commons/chain/mailreader/commands/ProfileCheck.java,v
1.1 2004/06/01 00:48:05 husted Exp $
* $Revision: 1.1 $
* $Date: 2004/06/01 00:48:05 $
*
* Copyright 2000-2004 Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.chain.mailreader.commands;
import org.apache.commons.chain.Command;
import org.apache.commons.chain.Context;
/**
* Create new profile if missing.
*/
public class ProfileCheck implements Command {
// See interface for Javadoc
public boolean execute(Context context) throws Exception {
Object profile = context.get(Profile.PROFILE_KEY);
if (null == profile) {
profile = new Profile();
context.put(Profile.PROFILE_KEY, profile);
}
return false;
}
}
1.1
jakarta-commons-sandbox/chain/apps/mailreader/src/java/org/apache/commons/chain/mailreader/commands/Profile.java
Index: Profile.java
===================================================================
package org.apache.commons.chain.mailreader.commands;
/**
* Individual settings for a user/client.
*/
public class Profile {
public static String PROFILE_KEY = "profile";
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]