Mostly formatting changes.

This commit is contained in:
Juan Carlos Luciani 2006-05-08 21:48:05 +00:00
parent 79e2f829f4
commit 0983950115
15 changed files with 3006 additions and 2979 deletions

View File

@ -46,7 +46,8 @@ import org.xml.sax.helpers.XMLReaderFactory;
* </auth_req>
*
*/
public class AuthReqMsg {
public class AuthReqMsg
{
protected String m_realm = null;
protected String m_authMechToken = null;
@ -100,7 +101,8 @@ public class AuthReqMsg {
public void startElement (String uri, String name, String qName, org.xml.sax.Attributes atts) throws SAXException
{
// Proceed based on our state
switch (m_state) {
switch (m_state)
{
case AWAITING_ROOT_ELEMENT_START:
// Verify that we are processing the expected tag
@ -156,7 +158,8 @@ public class AuthReqMsg {
public void endElement (String uri, String name, String qName) throws SAXException
{
// Proceed based on our state
switch (m_state) {
switch (m_state)
{
case AWAITING_ROOT_ELEMENT_END:
// Verify that we are processing the expected tag
@ -212,7 +215,8 @@ public class AuthReqMsg {
public void characters (char ch[], int start, int length) throws SAXException
{
// Proceed based on our state
switch (m_state) {
switch (m_state)
{
case AWAITING_REALM_DATA:
// Consume the data

View File

@ -49,7 +49,8 @@ package com.novell.casa.authtoksvc;
* in the HTTP 1.1 Specification.
*
*/
public class AuthRespMsg {
public class AuthRespMsg
{
String m_msg;

View File

@ -47,7 +47,8 @@ import org.xml.sax.helpers.XMLReaderFactory;
* </auth_token>
*
*/
public class AuthToken {
public class AuthToken
{
private String m_token;
private String m_lifetime;
@ -110,7 +111,8 @@ public class AuthToken {
public void startElement (String uri, String name, String qName, org.xml.sax.Attributes atts) throws SAXException
{
// Proceed based on our state
switch (m_state) {
switch (m_state)
{
case AWAITING_ROOT_ELEMENT_START:
// Verify that we are processing the expected tag
@ -195,7 +197,8 @@ public class AuthToken {
public void endElement (String uri, String name, String qName) throws SAXException
{
// Proceed based on our state
switch (m_state) {
switch (m_state)
{
case AWAITING_ROOT_ELEMENT_END:
// Verify that we are processing the expected tag
@ -279,7 +282,8 @@ public class AuthToken {
public void characters (char ch[], int start, int length) throws SAXException
{
// Proceed based on our state
switch (m_state) {
switch (m_state)
{
case AWAITING_SIGNATURE_DATA:
// Consume the data

View File

@ -159,7 +159,8 @@ public class CasaIdentityToken implements IdentityToken
public void startElement (String uri, String name, String qName, org.xml.sax.Attributes atts) throws SAXException
{
// Proceed based on our state
switch (m_state) {
switch (m_state)
{
case AWAITING_ROOT_ELEMENT_START:
// Verify that we are processing the expected tag
@ -280,7 +281,8 @@ public class CasaIdentityToken implements IdentityToken
public void endElement (String uri, String name, String qName) throws SAXException
{
// Proceed based on our state
switch (m_state) {
switch (m_state)
{
case AWAITING_ROOT_ELEMENT_END:
// Verify that we are processing the expected tag
@ -397,7 +399,8 @@ public class CasaIdentityToken implements IdentityToken
public void characters (char ch[], int start, int length) throws SAXException
{
// Proceed based on our state
switch (m_state) {
switch (m_state)
{
case AWAITING_ID_DATA:
// Consume the data

View File

@ -134,4 +134,3 @@ import javax.servlet.http.HttpServletResponse;
return s.getBytes();
}
}

View File

@ -45,7 +45,8 @@ import org.xml.sax.helpers.XMLReaderFactory;
* </get_auth_policy_req>
*
*/
public class GetAuthPolicyReqMsg {
public class GetAuthPolicyReqMsg
{
protected String m_serviceName = null;
protected String m_hostName = null;
@ -99,7 +100,8 @@ public class GetAuthPolicyReqMsg {
public void startElement (String uri, String name, String qName, org.xml.sax.Attributes atts) throws SAXException
{
// Proceed based on our state
switch (m_state) {
switch (m_state)
{
case AWAITING_ROOT_ELEMENT_START:
// Verify that we are processing the expected tag
@ -156,7 +158,8 @@ public class GetAuthPolicyReqMsg {
public void endElement (String uri, String name, String qName) throws SAXException
{
// Proceed based on our state
switch (m_state) {
switch (m_state)
{
case AWAITING_ROOT_ELEMENT_END:
// Verify that we are processing the expected tag
@ -212,7 +215,8 @@ public class GetAuthPolicyReqMsg {
public void characters (char ch[], int start, int length) throws SAXException
{
// Proceed based on our state
switch (m_state) {
switch (m_state)
{
case AWAITING_SERVICE_DATA:
// Consume the data

View File

@ -50,7 +50,8 @@ package com.novell.casa.authtoksvc;
* in the HTTP 1.1 Specification.
*
*/
public class GetAuthPolicyRespMsg {
public class GetAuthPolicyRespMsg
{
String m_msg;

View File

@ -46,7 +46,8 @@ import org.xml.sax.helpers.XMLReaderFactory;
* </get_auth_token_req>
*
*/
public class GetAuthTokReqMsg {
public class GetAuthTokReqMsg
{
protected String m_serviceName = null;
protected String m_hostName = null;
@ -104,7 +105,8 @@ public class GetAuthTokReqMsg {
public void startElement (String uri, String name, String qName, org.xml.sax.Attributes atts) throws SAXException
{
// Proceed based on our state
switch (m_state) {
switch (m_state)
{
case AWAITING_ROOT_ELEMENT_START:
// Verify that we are processing the expected tag
@ -175,7 +177,8 @@ public class GetAuthTokReqMsg {
public void endElement (String uri, String name, String qName) throws SAXException
{
// Proceed based on our state
switch (m_state) {
switch (m_state)
{
case AWAITING_ROOT_ELEMENT_END:
// Verify that we are processing the expected tag
@ -245,7 +248,8 @@ public class GetAuthTokReqMsg {
public void characters (char ch[], int start, int length) throws SAXException
{
// Proceed based on our state
switch (m_state) {
switch (m_state)
{
case AWAITING_SERVICE_DATA:
// Consume the data

View File

@ -50,7 +50,8 @@ package com.novell.casa.authtoksvc;
* in the HTTP 1.1 Specification.
*
*/
public class GetAuthTokRespMsg {
public class GetAuthTokRespMsg
{
String m_msg;

View File

@ -29,7 +29,8 @@ package com.novell.casa.authtoksvc;
*
* This is the interface to Identity Token Providers.
*/
public interface IdentityToken {
public interface IdentityToken
{
/*
* Initialize the token with parameters.

View File

@ -31,7 +31,8 @@ package com.novell.casa.authtoksvc;
* protocol.
*
*/
public class ProtoDefs {
public class ProtoDefs
{
/*
* XML Declaration used in the Casa Client/Server protocol

View File

@ -48,7 +48,8 @@ import org.xml.sax.helpers.XMLReaderFactory;
* </session_token>
*
*/
public class SessionToken {
public class SessionToken
{
private String m_id;
private String m_realm;
@ -111,7 +112,8 @@ public class SessionToken {
public void startElement (String uri, String name, String qName, org.xml.sax.Attributes atts) throws SAXException
{
// Proceed based on our state
switch (m_state) {
switch (m_state)
{
case AWAITING_ROOT_ELEMENT_START:
// Verify that we are processing the expected tag
@ -196,7 +198,8 @@ public class SessionToken {
public void endElement (String uri, String name, String qName) throws SAXException
{
// Proceed based on our state
switch (m_state) {
switch (m_state)
{
case AWAITING_ROOT_ELEMENT_END:
// Verify that we are processing the expected tag
@ -280,7 +283,8 @@ public class SessionToken {
public void characters (char ch[], int start, int length) throws SAXException
{
// Proceed based on our state
switch (m_state) {
switch (m_state)
{
case AWAITING_SIGNATURE_DATA:
// Consume the data